diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-13 18:38:26 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-13 18:38:26 +0200 |
commit | c89eb87446d40b753becd5441ec98e808c9a25b4 (patch) | |
tree | d15f717bed6caba4aab9e3015e0dce3f3c86df1c /src/conf_mode/host_name.py | |
parent | 6185439442e8982febf6b8037a89fc2d7e6fa677 (diff) | |
download | vyos-1x-c89eb87446d40b753becd5441ec98e808c9a25b4.tar.gz vyos-1x-c89eb87446d40b753becd5441ec98e808c9a25b4.zip |
dns-forwarding: T2185: migrate from SysVinit to systemd
Diffstat (limited to 'src/conf_mode/host_name.py')
-rwxr-xr-x | src/conf_mode/host_name.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/host_name.py b/src/conf_mode/host_name.py index 7c2f79abc..dd5819f9f 100755 --- a/src/conf_mode/host_name.py +++ b/src/conf_mode/host_name.py @@ -173,7 +173,7 @@ def apply(config): # restart pdns if it is used ret = run('/usr/bin/rec_control ping') if ret == 0: - call('/etc/init.d/pdns-recursor restart >/dev/null') + call('systemctl restart pdns-recursor.service') return None |