From 3d0386f27ca66379acf50199e1d1298386eeeeb8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 02:55:53 +0200 Subject: Adding upstream version 3.2.1. Signed-off-by: Daniel Baumann --- tests/deckard/configs/getdns.yaml | 12 ++++++++++++ tests/deckard/configs/knotd_master.yaml | 10 ++++++++++ tests/deckard/configs/knotd_slave.yaml | 10 ++++++++++ tests/deckard/configs/kresd.yaml | 10 ++++++++++ tests/deckard/configs/pdns.yaml | 15 +++++++++++++++ tests/deckard/configs/unbound.yaml | 13 +++++++++++++ 6 files changed, 70 insertions(+) create mode 100644 tests/deckard/configs/getdns.yaml create mode 100644 tests/deckard/configs/knotd_master.yaml create mode 100644 tests/deckard/configs/knotd_slave.yaml create mode 100644 tests/deckard/configs/kresd.yaml create mode 100644 tests/deckard/configs/pdns.yaml create mode 100644 tests/deckard/configs/unbound.yaml (limited to 'tests/deckard/configs') diff --git a/tests/deckard/configs/getdns.yaml b/tests/deckard/configs/getdns.yaml new file mode 100644 index 0000000..a5d1a2e --- /dev/null +++ b/tests/deckard/configs/getdns.yaml @@ -0,0 +1,12 @@ +programs: +- name: getdns + binary: getdns_query + additional: + - -C + - getdns.conf + templates: + - template/getdns.j2 + - template/dnssec_getdns.j2 + configs: + - getdns.conf + - getdns-root.key diff --git a/tests/deckard/configs/knotd_master.yaml b/tests/deckard/configs/knotd_master.yaml new file mode 100644 index 0000000..2e08b72 --- /dev/null +++ b/tests/deckard/configs/knotd_master.yaml @@ -0,0 +1,10 @@ +programs: +- name: knotd + binary: knotd + additional: + - -c + - ./knotd.conf + templates: + - "template/knotd_master.j2" + configs: + - "knotd.conf" diff --git a/tests/deckard/configs/knotd_slave.yaml b/tests/deckard/configs/knotd_slave.yaml new file mode 100644 index 0000000..4655ded --- /dev/null +++ b/tests/deckard/configs/knotd_slave.yaml @@ -0,0 +1,10 @@ +programs: +- name: knotd + binary: knotd + additional: + - -c + - ./knotd.conf + templates: + - "template/knotd_slave.j2" + configs: + - "knotd.conf" \ No newline at end of file diff --git a/tests/deckard/configs/kresd.yaml b/tests/deckard/configs/kresd.yaml new file mode 100644 index 0000000..b36a232 --- /dev/null +++ b/tests/deckard/configs/kresd.yaml @@ -0,0 +1,10 @@ +programs: +- name: kresd + binary: kresd + additional: + - -f + - "1" + templates: + - template/kresd.j2 + configs: + - config diff --git a/tests/deckard/configs/pdns.yaml b/tests/deckard/configs/pdns.yaml new file mode 100644 index 0000000..c9a3d23 --- /dev/null +++ b/tests/deckard/configs/pdns.yaml @@ -0,0 +1,15 @@ +programs: +- name: pdns + binary: pdns_recursor + additional: + - --config-dir=./ + templates: + - template/pdns_recursor.j2 + - template/hints_zone.j2 + - template/pdns_dnssec.j2 + configs: + - recursor.conf + - hints.pdns + - dnssec.lua + # SIGTERM leads to return code -15 instead of clean 0 so we have to ignore it + ignore_exit_code: true diff --git a/tests/deckard/configs/unbound.yaml b/tests/deckard/configs/unbound.yaml new file mode 100644 index 0000000..3c200db --- /dev/null +++ b/tests/deckard/configs/unbound.yaml @@ -0,0 +1,13 @@ +programs: +- name: unbound + binary: unbound + additional: + - -d + - -c + - unbound.conf + templates: + - template/unbound.j2 + - template/hints_zone.j2 + configs: + - unbound.conf + - hints.zone -- cgit v1.2.3