aboutsummaryrefslogtreecommitdiff
path: root/rc.shutdown
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2008-02-14 20:16:49 -0600
committerDan McGee <dan@archlinux.org>2008-02-14 20:16:49 -0600
commite658f681e1d36a75b527d182ce28ee0781ed4492 (patch)
tree8c05a6cd9a2fe21d136817c831473a6f464a4b52 /rc.shutdown
parente16e2d17c97f91cdb9eda0ad3525ee7977ad40a6 (diff)
downloadinitscripts-e658f681e1d36a75b527d182ce28ee0781ed4492.tar.xz
rc.shutdown: Fix hwclock double calls
Commit 9673449ac0af77751eab62423114f27e7dbc497c added --directisa configuration to rc.shutdown, but didn't remove the old hwclock calls and instead just added a second call. Remove the original calls. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-xrc.shutdown2
1 files changed, 0 insertions, 2 deletions
diff --git a/rc.shutdown b/rc.shutdown
index db8c862..c414535 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -62,10 +62,8 @@ fi
HWCLOCK_PARAMS="--systohc"
if [ "$HARDWARECLOCK" = "UTC" ]; then
- /sbin/hwclock --directisa --utc --systohc
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc"
else
- /sbin/hwclock --directisa --localtime --systohc
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime"
fi
if [ "$USEDIRECTISA" != "no" ]; then