diff options
author | Judd Vinet <judd@archlinux.org> | 2002-12-14 00:13:55 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2002-12-14 00:13:55 +0000 |
commit | 19c04471ce76a3f803fdf47b964880266b529070 (patch) | |
tree | e924201776b12234076bd60d3b956fbb4281aeb2 | |
parent | 96cb8c51e0ddb57f382c958ebb7808baaa258765 (diff) |
fixed the location of adjtime0.4
-rwxr-xr-x | rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,8 +55,8 @@ if [ "$HARDWARECLOCK" = "UTC" ]; then else /sbin/hwclock --localtime --hctosys fi -if [ ! -f /etc/adjtime ]; then - echo "0.0 0 0.0" > /etc/adjtime +if [ ! -f /var/lib/hwclock/adjtime ]; then + echo "0.0 0 0.0" > /var/lib/hwclock/adjtime fi if [ "$TIMEZONE" != "" ]; then /bin/ln -sf /usr/share/zoneinfo/$TIMEZONE /etc/localtime |