diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-05-16 16:01:38 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-05-16 16:02:33 +0200 |
commit | d4c10902026b76a6372cf738fc98860b29b39759 (patch) | |
tree | c8d3958d564f876b74e80f68727bbe5f02a57aed /src/op_mode/dns_forwarding_restart.sh | |
parent | be6f809581ccbcd6411713128a63711eaa2ce6b7 (diff) | |
download | vyos-1x-d4c10902026b76a6372cf738fc98860b29b39759.tar.gz vyos-1x-d4c10902026b76a6372cf738fc98860b29b39759.zip |
T644: remove prefixing from all scripts and update environment variables with VyOS paths.
Diffstat (limited to 'src/op_mode/dns_forwarding_restart.sh')
-rwxr-xr-x | src/op_mode/dns_forwarding_restart.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/op_mode/dns_forwarding_restart.sh b/src/op_mode/dns_forwarding_restart.sh new file mode 100755 index 000000000..12106fcc1 --- /dev/null +++ b/src/op_mode/dns_forwarding_restart.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 |