diff options
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/halt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index 43250eec..ea973017 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -83,22 +83,6 @@ touch /var/lib/random-seed chmod 600 /var/lib/random-seed action $"Saving random seed: " dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 2>/dev/null -# Sync the system clock. -ARC=0 -SRM=0 -UTC=0 - -if [ -f /etc/sysconfig/clock ]; then - . /etc/sysconfig/clock - - # convert old style clock config to new values - if [ "${CLOCKMODE}" = "GMT" ]; then - UTC=true - elif [ "${CLOCKMODE}" = "ARC" ]; then - ARC=true - fi -fi - [ -x /sbin/hwclock ] && action $"Syncing hardware clock to system time" /sbin/hwclock --systohc # Try to unmount tmpfs filesystems to avoid swapping them in. Ignore failures. |