From 7000385c68b5816867650781a5d8a87ce90f52aa Mon Sep 17 00:00:00 2001 From: Jernej Jakob Date: Thu, 11 Jun 2020 09:07:06 +0200 Subject: host_name: T2486: remove pdns-recursor restart It shouldn't be required, if necessary it should be added to vyos-hostsd apply command. --- src/conf_mode/host_name.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/conf_mode/host_name.py b/src/conf_mode/host_name.py index 0ca7011f4..3e301477d 100755 --- a/src/conf_mode/host_name.py +++ b/src/conf_mode/host_name.py @@ -167,18 +167,6 @@ def apply(config): if process_named_running('snmpd'): call('systemctl restart snmpd.service') - # restart pdns if it is used - we check for the control dir to not raise - # an exception on system startup - # - # File "/usr/lib/python3/dist-packages/vyos/configsession.py", line 128, in __run_command - # raise ConfigSessionError(output) - # vyos.configsession.ConfigSessionError: [ system domain-name vyos.io ] - # Fatal: Unable to generate local temporary file in directory '/run/powerdns': No such file or directory - if os.path.isdir('/run/powerdns'): - ret = run('/usr/bin/rec_control --socket-dir=/run/powerdns ping') - if ret == 0: - call('systemctl restart pdns-recursor.service') - return None -- cgit v1.2.3