You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
243 B
7 lines
243 B
7 years ago
|
#!/usr/bin/with-contenv sh
|
||
|
|
||
|
if [ $TZ ]; then
|
||
|
[ -f /usr/share/zoneinfo/$TZ ] && cp /usr/share/zoneinfo/$TZ /etc/localtime || echo "WARNING: $TZ is not a valid time zone."
|
||
|
[ -f /usr/share/zoneinfo/$TZ ] && echo "$TZ" > /etc/timezone
|
||
|
fi
|