summaryrefslogtreecommitdiff
path: root/src/op-mode/vyos-restart-dns-forwarding.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/op-mode/vyos-restart-dns-forwarding.sh')
-rwxr-xr-xsrc/op-mode/vyos-restart-dns-forwarding.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/op-mode/vyos-restart-dns-forwarding.sh b/src/op-mode/vyos-restart-dns-forwarding.sh
new file mode 100755
index 000000000..12106fcc1
--- /dev/null
+++ b/src/op-mode/vyos-restart-dns-forwarding.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if cli-shell-api exists service dns forwarding; then
+ echo "Restarting the DNS forwarding service"
+ systemctl restart pdns-recursor
+else
+ echo "DNS forwarding is not configured"
+fi