home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / ubiquity / tzsetup / finish-install next >
Encoding:
Text File  |  2006-08-30  |  201 b   |  11 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. . /usr/share/debconf/confmodule
  5.  
  6. db_get time/zone
  7. zone="$RET"
  8. echo "$zone" > /target/etc/timezone
  9. rm -f /target/etc/localtime
  10. ln -sf "/usr/share/zoneinfo/$zone" /target/etc/localtime
  11.