diff options
Diffstat (limited to 'init.d/hwclock.in')
-rw-r--r-- | init.d/hwclock.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/hwclock.in b/init.d/hwclock.in index cfb25ae1..7f2323ae 100644 --- a/init.d/hwclock.in +++ b/init.d/hwclock.in @@ -94,7 +94,7 @@ start() "$utc_cmd" != --utc -o \ -n "$clock_args" ]; then - if yesno $clock_hctosys; then + if yesno ${clock_hctosys:-YES}; then _hwclock --hctosys $utc_cmd $clock_args else _hwclock --systz $utc_cmd $clock_args @@ -111,7 +111,7 @@ stop() { # Don't tweak the hardware clock on LiveCD halt. [ -n "$CDBOOT" ] && return 0 - yesno $clock_systohc || return 0 + yesno ${clock_systohc:-NO} || return 0 local retval=0 errstr="" setupopts |