aboutsummaryrefslogtreecommitdiff
path: root/rc.shutdown
diff options
context:
space:
mode:
authorGerhard Brauer <gerhard.brauer@web.de>2009-06-26 10:52:09 -0700
committerAaron Griffin <aaronmgriffin@gmail.com>2009-06-26 10:52:09 -0700
commit92cbc62e1c1b22c6cc251628e8d51a45607998b6 (patch)
tree6f297b14b441f3a13ea0bfcf3d368f8f4203ee24 /rc.shutdown
parentfb1177118b663da6b45021cb0ebdb40741047bac (diff)
downloadinitscripts-92cbc62e1c1b22c6cc251628e8d51a45607998b6.tar.xz
Don't change hardwareclock if settings unclear
Don't default to 'localtime' if HARDWARECLOCK is not set to UTC. Check explicit values Ref: FS#15263 Edited-by: Aaron Griffin <aaronmgriffin@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-xrc.shutdown8
1 files changed, 6 insertions, 2 deletions
diff --git a/rc.shutdown b/rc.shutdown
index 1143c16..d366423 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -73,13 +73,17 @@ fi
HWCLOCK_PARAMS="--systohc"
if [ "$HARDWARECLOCK" = "UTC" ]; then
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc"
-else
+elif
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime"
+else
+ HWCLOCK_PARAMS=""
fi
if [ "$USEDIRECTISA" = "yes" -o "$USEDIRECTISA" = "YES" ]; then
HWCLOCK_PARAMS="$HWCLOCK_PARAMS --directisa"
fi
-/sbin/hwclock $HWCLOCK_PARAMS
+if [ "$HWCLOCK_PARAMS" != "" ]; then
+ /sbin/hwclock $HWCLOCK_PARAMS
+fi
stat_done
# removing psmouse module to fix some reboot issues on newer laptops