X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=timezone.init;h=5b52348c2529fa8822e86fd27e8f1e856e159067;hb=f720b8daf02a554804a1527f4ccb3eccf9596606;hp=cb31fd132c47fe71c3073d471c555170fae924d7;hpb=462b45ea9803e7ddd2850779a2aa6c26bca21518;p=packages%2Ftzdata.git diff --git a/timezone.init b/timezone.init old mode 100644 new mode 100755 index cb31fd1..5b52348 --- a/timezone.init +++ b/timezone.init @@ -1,16 +1,17 @@ #!/bin/sh # # timezone Set time zone information. -# chkconfig: 2345 10 70 +# chkconfig: 2345 10 90 # description: This script is setting time zone information for your machine. -# Author: Pawel Wilk # -# $Id$ + +[ -f /etc/sysconfig/timezone ] || exit 0 # Source function library. . /etc/rc.d/init.d/functions -[ ! -f /etc/sysconfig/timezone ] && exit 0 +upstart_controlled --except status disable + . /etc/sysconfig/timezone ZONE_FILE="$ZONE_INFO_DIR" @@ -19,36 +20,49 @@ if [ -n "$ZONE_INFO_SCHEME" -a "$ZONE_INFO_SCHEME" != "posix" ]; then ZONE_FILE="$ZONE_FILE/$ZONE_INFO_SCHEME" fi -if [ -n "$ZONE_INFO_AREA" ]; then - ZONE_FILE="$ZONE_FILE/$ZONE_INFO_AREA" -fi - -ZONE_FILE="$ZONE_FILE/$TIME_ZONE" +ZONE_FILE="$ZONE_FILE/$TIMEZONE" -[ -L /etc/localtime -a "`resolvesymlink /etc/localtime`" = "$ZONE_FILE" ] && exit 0 +[ -L /etc/localtime ] && [ "$(resolvesymlink /etc/localtime)" = "$ZONE_FILE" ] && exit 0 start() { - if [ ! -f /var/lock/subsys/timezone ]; then + if [ -f /var/lock/subsys/timezone ]; then + msg_already_running timezone + return + fi + + if [ -f "$ZONE_FILE" ]; then rm -f /etc/localtime - if [ -f "$ZONE_FILE" ]; then - if [ -n "$ZONE_INFO_AREA" ]; then - MESSAGE="`nls 'Setting time zone information (%s, %s)' "$ZONE_INFO_AREA" "$TIME_ZONE"`" - else - MESSAGE="`nls 'Setting time zone information (%s)' "$TIME_ZONE"`" - fi - run_cmd "$MESSAGE" cp -af $ZONE_FILE /etc/localtime - RETVAL=$? - fi - - [ $RETVAL -eq 0 ] && touch /var/lock/subsys/timezone + + MESSAGE=$(nls 'Setting time zone information (%s)' "$TIMEZONE") + + run_cmd "$MESSAGE" cp -af "$ZONE_FILE" /etc/localtime + RETVAL=$? + restorecon /etc/localtime >/dev/null 2>&1 + else + show "Missing %s file" "$ZONE_FILE" + fail + RETVAL=2 fi + + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/timezone } stop() { - if [ -f /var/lock/subsys/timezone ]; then - run_cmd "Unsetting time zone information" rm -f /etc/localtime - rm -f /var/lock/subsys/timezone - fi + rm -f /var/lock/subsys/timezone >/dev/null 2>&1 +} + +disable() { + run_cmd "Unsetting time zone information" rm -f /etc/localtime +} + +# return true if FILE1 and FILE2 are identical +identical() { + local crc1 crc2 + test -f "$1" || return 1 + test -f "$2" || return 1 + crc1=$(cksum "$1" | awk '{print $1}') + crc2=$(cksum "$2" | awk '{print $1}') + [ "$crc1" = "$crc2" ] } RETVAL=0 @@ -58,17 +72,28 @@ case "$1" in start ;; stop) - stop + stop ;; - restart|reload) + restart|try-restart|reload|force-reload) stop start ;; + disable) + disable + ;; + status) + nls 'Timezone is configured to %s' "$TIMEZONE" + if [ ! -f "$ZONE_FILE" ]; then + nls "Missing %s file" "$ZONE_FILE" + exit 1 + elif ! identical "$ZONE_FILE" /etc/localtime; then + nls 'Current time zone differs from %s' "$TIMEZONE" + exit 1 + fi + ;; *) - echo "Usage: $0 {start|stop|restart|reload}" + msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|disable|status}" exit 3 esac -unset ZONE_FILE ZONE_INFO_DIR ZONE_INFO_SCHEME ZONE_INFO_AREA TIME_ZONE MESSAGE - exit $RETVAL