From 3e713e5c96081206c47a44cf044428bcfa27cd02 Mon Sep 17 00:00:00 2001 From: Indrajit Raychaudhuri Date: Fri, 29 Dec 2023 18:21:33 -0600 Subject: dns: T5959: Streamline dns forwarding service Streamline configuration and operation of dns forwarding service in following ways: - Remove `dns_forwarding_reset.py` as its functionality is now covered by `dns.py` - Adjust function names in `dns.py` to disambiguate between DNS forwarding and dynamic DNS - Remove `dns_forwarding_restart.sh` as its functionality is inlined in `dns-forwarding.xml` - Templatize systemd override for `pdns-recursor.service` and move the generated override files in /run. This ensures that the override files are always generated afresh after boot - Simplify the systemd override file by removing the redundant overrides - Relocate configuration path for pdns-recursor to `/run/pdns-recursor` and utilize the `RuntimeDirectory` default that pdns-recursor expects - We do not need to use custom `--socket-dir` path anymore, the default path (viz., `/run/pdns-recursor` is fine) (cherry picked from commit 1c1fb5fb4bd7c0d205b28caf90357ad56423464f) --- op-mode-definitions/dns-forwarding.xml.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'op-mode-definitions') diff --git a/op-mode-definitions/dns-forwarding.xml.in b/op-mode-definitions/dns-forwarding.xml.in index a4c650c38..ebedae6eb 100644 --- a/op-mode-definitions/dns-forwarding.xml.in +++ b/op-mode-definitions/dns-forwarding.xml.in @@ -11,7 +11,7 @@ - Monitor last lines of DNS forwarding + Monitor last lines of DNS Forwarding journalctl --no-hostname --follow --boot --unit pdns-recursor.service @@ -47,12 +47,12 @@ - Show DNS forwarding information + Show DNS Forwarding information - Show DNS forwarding statistics + Show DNS Forwarding statistics sudo ${vyos_op_scripts_dir}/dns.py show_forwarding_statistics @@ -71,9 +71,9 @@ - Restart DNS forwarding service + Restart DNS Forwarding service - sudo ${vyos_op_scripts_dir}/dns_forwarding_restart.sh + if cli-shell-api existsActive service dns forwarding; then sudo systemctl restart pdns-recursor.service; else echo "DNS forwarding not configured"; fi @@ -88,19 +88,19 @@ - Reset DNS forwarding cache + Reset DNS Forwarding cache - sudo ${vyos_op_scripts_dir}/dns_forwarding_reset.py $5 + sudo ${vyos_op_scripts_dir}/dns.py reset_forwarding --domain $5 - Reset DNS forwarding cache for a domain + Reset DNS Forwarding cache for a domain - sudo ${vyos_op_scripts_dir}/dns_forwarding_reset.py --all + sudo ${vyos_op_scripts_dir}/dns.py reset_forwarding --all - Reset DNS forwarding cache + Reset DNS Forwarding cache for all domains -- cgit v1.2.3