source: npl/system/glibc/timezone-scripts/parts/04 @ c5c522c

gcc484ntopperl-5.22
Last change on this file since c5c522c was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

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