diff options
author | Christian Breunig <christian@breunig.cc> | 2023-09-15 17:31:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 17:31:02 +0200 |
commit | 8c3ce3cd28ed26794a2e2e4f660d2335f2ff2e06 (patch) | |
tree | 2a7a5fc237889cacb8b419c970d628012121fd69 /src/conf_mode | |
parent | 27ad9f5ba6437d66178450b37c7a5bf79bc3d67a (diff) | |
parent | 47875457cd8b176f7f23a3141175d745aeb14d8a (diff) | |
download | vyos-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/conf_mode')
-rwxr-xr-x | src/conf_mode/high-availability.py | 2 |
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 |