From: LaMont Jones Date: Sun, 8 Jul 2007 23:06:55 +0000 (-0600) Subject: v2.12r-6 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8d9c797047232f184b48f98b2587ef17529a1b6;p=util-linux v2.12r-6 --- diff --git a/debian/changelog b/debian/changelog index 787c5053..259345aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +util-linux (2.12r-6) unstable; urgency=low + + * make hwclock even more policy compilant. + + -- LaMont Jones Sat, 28 Jan 2006 08:57:45 -0700 + util-linux (2.12r-5) unstable; urgency=low * make hwclock prettier. Closes: #348718 diff --git a/debian/hwclock.sh b/debian/hwclock.sh index a10f04de..9f3d47f5 100644 --- a/debian/hwclock.sh +++ b/debian/hwclock.sh @@ -87,7 +87,7 @@ hwclocksh() fi if [ "$HWCLOCKACCESS" != no ]; then - log_daemon_msg "Setting the system clock$AGAIN" + log_action_msg "Setting the system clock$AGAIN." # Copies Hardware Clock time to System Clock using the correct # timezone for hardware clocks in local time, and sets kernel @@ -112,10 +112,8 @@ hwclocksh() fi # Announce the local time. - log_end_msg 0 verbose_log_action_msg "System Clock set. Local time: `date $UTC`" else - log_end_msg 0 verbose_log_action_msg "Not setting System Clock" fi ;; @@ -131,15 +129,13 @@ hwclocksh() # clock will not be carried across reboots. # if [ "$HWCLOCKACCESS" != no ]; then - log_daemon_msg "Saving the system clock" + log_action_msg "Saving the system clock." if [ "$GMT" = "-u" ]; then GMT="--utc" fi /sbin/hwclock --systohc $GMT $HWCLOCKPARS $BADYEAR - log_end_msg 0 verbose_log_action_msg "Hardware Clock updated to `date`" else - log_end_msg 0 verbose_log_action_msg "Not saving System Clock" fi ;;