diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-21 22:33:07 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-21 22:33:07 +0200 |
commit | 260f383221ea1b23e644b0c50f45eeb300e9bc24 (patch) | |
tree | 0f6b4082dbc857d5bf9ec460d86bd3ecc5025572 /python | |
parent | b66ab0b02566d2b4eec6ec26db5122269fde89f1 (diff) | |
download | vyos-1x-260f383221ea1b23e644b0c50f45eeb300e9bc24.tar.gz vyos-1x-260f383221ea1b23e644b0c50f45eeb300e9bc24.zip |
vrrp: keepalived: T616: drop /etc/default/keepalived
This is a follow-up commit to 65398e5c8 ("vrrp: keepalived: T616: move
configuration to volatile /run directory") as it makes no sense to store a
static /etc/default/keepalived file marked as "Autogenerated by VyOS" that only
enabled the SNMP option to keepalived.
Better pass the --snmp switch via the systemd override file and drop all other
references/files.
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/vrrp.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/vrrp.py b/python/vyos/ifconfig/vrrp.py index 481b0284a..3d6f4d7c6 100644 --- a/python/vyos/ifconfig/vrrp.py +++ b/python/vyos/ifconfig/vrrp.py @@ -37,7 +37,6 @@ class VRRP(object): 'state': '/tmp/keepalived.data', 'stats': '/tmp/keepalived.stats', 'json': '/tmp/keepalived.json', - 'daemon': '/etc/default/keepalived', 'config': '/run/keepalived/keepalived.conf', 'vyos': '/run/keepalived/keepalived_config.dict', } |