diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-10-29 11:15:19 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-10-29 11:15:19 -0700 |
commit | f40edea1ddf9c5ac99ee6c7851cf14002b1a5afd (patch) | |
tree | 5f73c85c02144c2418db556d6c176665cb3c9991 | |
parent | 88eade0a2c000e83820d189f586f2b0be62def6a (diff) | |
download | vyatta-cfg-system-f40edea1ddf9c5ac99ee6c7851cf14002b1a5afd.tar.gz vyatta-cfg-system-f40edea1ddf9c5ac99ee6c7851cf14002b1a5afd.zip |
Dont start radvd on boot
Bug 4975
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 730815f6..95fcd1ca 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -6,8 +6,10 @@ sysconfdir=@sysconfdir@ bindir=@bindir@ sbindir=@sbindir@ -# remove init of daemons that we start/stop -for init in ntp ssh snmpd openhpid vyatta-keepalived ipvsadm dnsmasq ddclient; do +# remove init of daemons that are controlled by Vyatta configuration process +for init in ntp ssh snmpd openhpid \ + vyatta-keepalived ipvsadm dnsmasq ddclient radvd +do update-rc.d -f ${init} remove >/dev/null done |