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 /data/templates | |
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 'data/templates')
-rw-r--r-- | data/templates/high-availability/10-override.conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/high-availability/10-override.conf.j2 b/data/templates/high-availability/10-override.conf.j2 index d1cb25581..c153f09b4 100644 --- a/data/templates/high-availability/10-override.conf.j2 +++ b/data/templates/high-availability/10-override.conf.j2 @@ -1,5 +1,5 @@ ### Autogenerated by ${vyos_conf_scripts_dir}/high-availability.py ### -{% set snmp = '' if vrrp.disable_snmp is vyos_defined else '--snmp' %} +{% set snmp = '--snmp' if vrrp.snmp is vyos_defined else '' %} [Unit] After=vyos-router.service # Only start if there is our configuration file - remove Debian default |