]> git.pld-linux.org Git - packages/tzdata.git/blob - timezone.init
9e6aed17aae49c51fcaad9dc7f6ac2c7651e0ea2
[packages/tzdata.git] / timezone.init
1 #!/bin/sh
2 #
3 # timezone      Set time zone information.
4 # chkconfig:    2345 10 90
5 # description:  This script is setting time zone information for your machine.
6 #
7
8 [ -f /etc/sysconfig/timezone ] || exit 0
9
10 # Source function library.
11 . /etc/rc.d/init.d/functions
12
13 upstart_controlled --except status disable
14
15 . /etc/sysconfig/timezone
16
17 ZONE_FILE="$ZONE_INFO_DIR"
18
19 if [ -n "$ZONE_INFO_SCHEME" -a "$ZONE_INFO_SCHEME" != "posix" ]; then
20         ZONE_FILE="$ZONE_FILE/$ZONE_INFO_SCHEME"
21 fi
22
23 ZONE_FILE="$ZONE_FILE/$TIMEZONE"
24
25 [ -L /etc/localtime ] && [ "$(resolvesymlink /etc/localtime)" = "$ZONE_FILE" ] && exit 0
26
27 start() {
28         if [ -f /var/lock/subsys/timezone ]; then
29                 msg_already_running timezone
30                 return
31         fi
32
33         if [ -f "$ZONE_FILE" ]; then
34                 rm -f /etc/localtime
35
36                 MESSAGE=$(nls 'Setting time zone information (%s)' "$TIMEZONE")
37
38                 run_cmd "$MESSAGE" cp -af "$ZONE_FILE" /etc/localtime
39                 RETVAL=$?
40                 restorecon /etc/localtime >/dev/null 2>&1
41         else
42                 show "Missing %s file" "$ZONE_FILE"
43                 fail
44                 RETVAL=2
45         fi
46
47         [ $RETVAL -eq 0 ] && touch /var/lock/subsys/timezone
48 }
49
50 stop() {
51         rm -f /var/lock/subsys/timezone >/dev/null 2>&1
52 }
53
54 disable() {
55         run_cmd "Unsetting time zone information" rm -f /etc/localtime
56 }
57
58 # return true if FILE1 and FILE2 are identical
59 identical() {
60         local crc1 crc2
61         crc1=$(cksum "$1" | awk '{print $1}')
62         crc2=$(cksum "$2" | awk '{print $1}')
63         [ "$crc1" = "$crc2" ]
64 }
65
66 RETVAL=0
67 # See how we were called.
68 case "$1" in
69   start)
70         start
71         ;;
72   stop)
73         stop
74         ;;
75   restart|try-restart|reload|force-reload)
76         stop
77         start
78         ;;
79   disable)
80         disable
81         ;;
82   status)
83         nls 'Timezone is configured to %s' "$TIMEZONE"
84         if [ ! -f "$ZONE_FILE" ]; then
85                 nls "Missing %s file" "$ZONE_FILE"
86         elif ! identical "$ZONE_FILE" /etc/localtime; then
87                 nls 'Current time zone differs from %s!' "$TIMEZONE"
88         fi
89         ;;
90   *)
91         msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|disable|status}"
92         exit 3
93 esac
94
95 exit $RETVAL
This page took 0.030635 seconds and 2 git commands to generate.