blob: 5b0da0e83f21494a6643b8d88a5e8c0eea2edec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Type it at the prompt below exactly as it appears above. (NOTE: If you don't
see your timezone, use "timeconfig" again after booting for the verbose list)
EOF
echo -n "Timezone? "
read TIMEZONE;
echo
if [ -n "$TIMEZONE" -a \
-r $T_PX/usr/share/zoneinfo/$TIMEZONE -o \
-r /var/log/mount/usr/share/zoneinfo/$TIMEZONE -o \
-L $T_PX/usr/share/zoneinfo/$TIMEZONE -o \
-L /var/log/mount/usr/share/zoneinfo/$TIMEZONE ]; then
echo "Creating link from $TIMEZONE to localtime in /etc..."
echo
setzone $TIMEZONE
exit
else
cat << EOF
Timezone $TIMEZONE could not be found. You may try again if you wish.
Make sure you type the name exactly as it appears - this configuration script
is case sensitive.
Press [enter] to continue.
EOF
read JUNK;
fi
done
fi
|