diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-03 10:28:03 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-03 10:34:39 -0800 |
commit | da9b61521689a4590f5f4e4a56e070032696d846 (patch) | |
tree | 1ce1e10e622d56daf965588fba9fb14fb501cf2e /debian/vyatta-cfg-system.postinst.in | |
parent | ee47b78952937fa328ee6424e7b3a2aeade4e536 (diff) | |
download | vyatta-cfg-system-da9b61521689a4590f5f4e4a56e070032696d846.tar.gz vyatta-cfg-system-da9b61521689a4590f5f4e4a56e070032696d846.zip |
Fix path on hwclock cleanout
Diffstat (limited to 'debian/vyatta-cfg-system.postinst.in')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 10ceac14..c83e687e 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -11,9 +11,10 @@ for init in ntp ssh snmpd openhpid vyatta-keepalived ipvsadm dnsmasq ddclient; d update-rc.d -f ${init} remove >/dev/null done -# remove extra call to clock setup only need one +# remove extra call to clock setup only need one. this speeds up boot +# Mystery: why does Debian do it twice? if [ -L /etc/rcS.d/S08hwclockfirst.sh -a -L /etc/rcS.d/S11hwclock.sh ]; then - rm /etc/init.d/rcS.d/S11hwclock.sh + rm /etc/rcS.d/S11hwclock.sh fi case `grep '^RULES_FILE=' /lib/udev/write_net_rules` in |