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