summaryrefslogtreecommitdiff
path: root/debian/vyatta-cfg-system.postinst.in
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-10-29 11:15:19 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-10-29 11:15:19 -0700
commitf40edea1ddf9c5ac99ee6c7851cf14002b1a5afd (patch)
tree5f73c85c02144c2418db556d6c176665cb3c9991 /debian/vyatta-cfg-system.postinst.in
parent88eade0a2c000e83820d189f586f2b0be62def6a (diff)
downloadvyatta-cfg-system-f40edea1ddf9c5ac99ee6c7851cf14002b1a5afd.tar.gz
vyatta-cfg-system-f40edea1ddf9c5ac99ee6c7851cf14002b1a5afd.zip
Dont start radvd on boot
Bug 4975
Diffstat (limited to 'debian/vyatta-cfg-system.postinst.in')
-rw-r--r--debian/vyatta-cfg-system.postinst.in6
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