1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-01-15 15:41:54 +01:00
slackware-current/patches/source/glibc-zoneinfo/timezone-scripts/parts/04
Patrick J Volkerding 8e056e9406 Sat Mar 19 20:28:16 UTC 2022
patches/packages/glibc-zoneinfo-2022a-noarch-1_slack15.0.txz:  Upgraded.
  This package provides the latest timezone updates.
2022-03-20 13:29:57 +01:00

33 lines
887 B
Text

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