diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-10-20 21:34:45 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-10-20 21:34:45 +0200 |
commit | 1d89e5196611f06bc1d0f925fc2ac1cb4a5536ec (patch) | |
tree | adc3efca73a769c5861a317b838e99e6abe769c4 /src/conf_mode/service_mdns-repeater.py | |
parent | 69aa8ca0aa93575c3758c9d6a86c37159848116c (diff) | |
download | vyos-1x-1d89e5196611f06bc1d0f925fc2ac1cb4a5536ec.tar.gz vyos-1x-1d89e5196611f06bc1d0f925fc2ac1cb4a5536ec.zip |
mdns: T3917: move avahi configuration file to /run
Diffstat (limited to 'src/conf_mode/service_mdns-repeater.py')
-rwxr-xr-x | src/conf_mode/service_mdns-repeater.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/service_mdns-repeater.py b/src/conf_mode/service_mdns-repeater.py index 55b568e48..d31a0c49e 100755 --- a/src/conf_mode/service_mdns-repeater.py +++ b/src/conf_mode/service_mdns-repeater.py @@ -28,7 +28,7 @@ from vyos import ConfigError from vyos import airbag airbag.enable() -config_file = '/etc/avahi/avahi-daemon.conf' +config_file = '/run/avahi-daemon/avahi-daemon.conf' vrrp_running_file = '/run/mdns_vrrp_active' def get_config(config=None): @@ -106,7 +106,7 @@ def apply(mdns): else: if 'vrrp_disable' not in mdns and os.path.exists(vrrp_running_file): os.unlink(vrrp_running_file) - + if mdns['vrrp_exists'] and 'vrrp_disable' in mdns: if not os.path.exists(vrrp_running_file): os.mknod(vrrp_running_file) # vrrp script looks for this file to update mdns repeater |