2009-08-26 17:00:38 +02:00
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
Type it at the prompt below exactly as it appears above. (NOTE: If you don't
|
2009-08-26 17:00:38 +02:00
|
|
|
see your timezone, use "timeconfig" again after booting for the verbose list)
|
|
|
|
|
|
|
|
EOF
|
|
|
|
echo -n "Timezone? "
|
|
|
|
read TIMEZONE;
|
|
|
|
echo
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
if [ -n "$TIMEZONE" -a \
|
|
|
|
-r $T_PX/usr/share/zoneinfo/$TIMEZONE -o \
|
2009-08-26 17:00:38 +02:00
|
|
|
-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
|
|
|
|
|