From 28d34292a9a8a03ea78a909ccb1d8d50ee21d0bb Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 18 Jul 2009 14:20:55 +1000 Subject: Fix incomplete elif statement Commit 92cbc62e introduced an incomplete elif statement which caues shutdown to fail. Signed-off-by: Allan McRae --- rc.shutdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.shutdown b/rc.shutdown index d366423..96611b7 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -73,7 +73,7 @@ fi HWCLOCK_PARAMS="--systohc" if [ "$HARDWARECLOCK" = "UTC" ]; then HWCLOCK_PARAMS="$HWCLOCK_PARAMS --utc" -elif +elif [ "$HARDWARECLOCK" = "localtime" ]; then HWCLOCK_PARAMS="$HWCLOCK_PARAMS --localtime" else HWCLOCK_PARAMS="" -- cgit v1.2.3