From 4c493ec5599b1a30dadc51567e2546a63feb87ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20B=C3=A4chler?= Date: Sun, 6 Apr 2008 15:50:57 +0200 Subject: Make USEDIRECTISA default to no, which is a sane default according to hwlock's manpage. This is contrary to the behaviour in older initscripts. --- rc.conf | 2 +- rc.sysinit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.conf b/rc.conf index 8a78b30..48455f8 100644 --- a/rc.conf +++ b/rc.conf @@ -17,7 +17,7 @@ # LOCALE="en_US.utf8" HARDWARECLOCK="localtime" -USEDIRECTISA="yes" +USEDIRECTISA="no" TIMEZONE="Canada/Pacific" KEYMAP="us" CONSOLEFONT= diff --git a/rc.sysinit b/rc.sysinit index b97613f..b6797cb 100755 --- a/rc.sysinit +++ b/rc.sysinit @@ -61,7 +61,7 @@ if [ "$HARDWARECLOCK" = "UTC" ]; then else HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime" fi -if [ "$USEDIRECTISA" != "no" ]; then +if [ "$USEDIRECTISA" = "yes" -o "$USEDIRECTISA" = "YES" ]; then HWCLOCK_PARAMS="$HWCLOCK_PARAMS --directisa" fi -- cgit v1.2.3