summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-09-15 17:31:02 +0200
committerGitHub <noreply@github.com>2023-09-15 17:31:02 +0200
commit8c3ce3cd28ed26794a2e2e4f660d2335f2ff2e06 (patch)
tree2a7a5fc237889cacb8b419c970d628012121fd69 /src
parent27ad9f5ba6437d66178450b37c7a5bf79bc3d67a (diff)
parent47875457cd8b176f7f23a3141175d745aeb14d8a (diff)
downloadvyos-1x-8c3ce3cd28ed26794a2e2e4f660d2335f2ff2e06.tar.gz
vyos-1x-8c3ce3cd28ed26794a2e2e4f660d2335f2ff2e06.zip
Merge pull request #2273 from sever-sever/T5586
T5586: Disable by default SNMP for Keeplived VRRP service
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/high-availability.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/high-availability.py b/src/conf_mode/high-availability.py
index 70f43ab52..b3b27b14e 100755
--- a/src/conf_mode/high-availability.py
+++ b/src/conf_mode/high-availability.py
@@ -59,7 +59,7 @@ def get_config(config=None):
if conf.exists(conntrack_path):
ha['conntrack_sync_group'] = conf.return_value(conntrack_path)
- if leaf_node_changed(conf, base + ['vrrp', 'disable-snmp']):
+ if leaf_node_changed(conf, base + ['vrrp', 'snmp']):
ha.update({'restart_required': {}})
return ha