diff options
author | Judd Vinet <judd@archlinux.org> | 2006-09-26 06:34:35 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2006-09-26 06:34:35 +0000 |
commit | 00081d09b7ab18b8672a299d61a1281819904890 (patch) | |
tree | 5d95b570563fc6122b65d978825f1e5a39a822a4 | |
parent | 2f49e1bb285fc9ad7259caf5edb957d7c891c974 (diff) |
Added --directisa switch to hwclock in rc.shutdown
-rwxr-xr-x | rc.shutdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.shutdown b/rc.shutdown index e4baa7f..5057466 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -51,9 +51,9 @@ stat_done stat_busy "Saving System Clock" if [ "$HARDWARECLOCK" = "UTC" ]; then - /sbin/hwclock --utc --systohc + /sbin/hwclock --directisa --utc --systohc else - /sbin/hwclock --localtime --systohc + /sbin/hwclock --directisa --localtime --systohc fi stat_done |