]> git.pld-linux.org Git - packages/tzdata.git/blobdiff - timezone.init
- merged ZONE_INFO_AREA and TIME_ZONE into TIMEZONE
[packages/tzdata.git] / timezone.init
index 72d2b67e1d0e3116beb2dc1ff3d35ba3909dd63f..58085a150a83ce57ef4fa1c5160b9c60dd283339 100644 (file)
@@ -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 <siefca@pld-linux.org>
 #
 # $Id$
 
+[ -f /etc/sysconfig/timezone ] || exit 0
+
 # Source function library.
 . /etc/rc.d/init.d/functions
 
-[ ! -f /etc/sysconfig/timezone ] && exit 0
 . /etc/sysconfig/timezone
 
 ZONE_FILE="$ZONE_INFO_DIR"
@@ -19,26 +20,20 @@ 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 "$ZONE_FILE" ]; then
                        rm -f /etc/localtime
 
-                       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
+                       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
                fi
 
                [ $RETVAL -eq 0 ] && touch /var/lock/subsys/timezone
@@ -47,11 +42,14 @@ start() {
 
 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
 }
 
+disable() {
+       run_cmd "Unsetting time zone information" rm -f /etc/localtime
+}
+
 RETVAL=0
 # See how we were called.
 case "$1" in
@@ -61,12 +59,18 @@ case "$1" in
   stop)
        stop
        ;;
-  restart|reload)
+  restart|try-restart|reload|force-reload)
        stop
        start
        ;;
+  disable)
+       disable
+       ;;
+  status)
+       nls 'Time zone configured to (%s)' "$TIMEZONE"
+       ;;
   *)
-       msg_usage "$0 {start|stop|restart|reload}"
+       msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|disable|status}"
        exit 3
 esac
 
This page took 0.073019 seconds and 4 git commands to generate.