diff options
author | Kim <kim.sidney@gmail.com> | 2017-11-20 22:38:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-20 22:38:33 +0100 |
commit | 414eb78ec056a0b90d556377ecb73bc9100c03a4 (patch) | |
tree | 873a4e87ce9c94586ca902fba02a5ec7103e908d /debian | |
parent | 8843eb3358d2effbd3273af50a1d9ddc6ace0e8a (diff) | |
download | vyatta-cfg-system-414eb78ec056a0b90d556377ecb73bc9100c03a4.tar.gz vyatta-cfg-system-414eb78ec056a0b90d556377ecb73bc9100c03a4.zip |
prevent keepalived from starting on boot
Let vyos config start keepalived
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/vyatta-cfg-system.postinst.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 60ed8eeb..9850f077 100755 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -8,7 +8,8 @@ sbindir=@sbindir@ # remove init of daemons that are controlled by Vyatta configuration process for init in ntp ssh snmpd openhpid logd \ - ipvsadm dnsmasq ddclient radvd hostapd conntrackd + ipvsadm dnsmasq ddclient radvd \ + hostapd conntrackd keepalived do update-rc.d -f ${init} remove >/dev/null systemctl disable ${init} >/dev/null |