bafc4266c9b621d6853835385ff1c973d09fcbab
[live-boot-grml.git] / scripts / live-bottom / 02_timezone
1 #!/bin/sh
2
3 #set -e
4
5 # initramfs-tools header
6
7 PREREQ=""
8
9 prereqs()
10 {
11         echo "${PREREQ}"
12 }
13
14 case "${1}" in
15         prereqs)
16                 prereqs
17                 exit 0
18                 ;;
19 esac
20
21 # live-initramfs header
22
23 . /scripts/live-functions
24
25 log_begin_msg "Setting timezone..."
26
27 # live-initramfs script
28
29 cp -f /root/usr/share/zoneinfo/UTC /root/etc/localtime
30
31 log_end_msg