12345678910111213141516 |
- # Set default zone info file, default points to 'UTC'
- if test -r etc/zoneinfo/UTC
- then
- if test -L etc/localtime -a ! -e etc/localtime
- then
- echo "etc/localtime is a dangling symlink, trying to recreate it" 1>&2
- ln -sf zoneinfo/UTC etc/localtime
- elif test ! -e etc/localtime
- then
- ln -s zoneinfo/UTC etc/localtime
- fi
- fi
|