2
0

01-set-timezone 243 B

123456
  1. #!/usr/bin/with-contenv sh
  2. if [ $TZ ]; then
  3. [ -f /usr/share/zoneinfo/$TZ ] && cp /usr/share/zoneinfo/$TZ /etc/localtime || echo "WARNING: $TZ is not a valid time zone."
  4. [ -f /usr/share/zoneinfo/$TZ ] && echo "$TZ" > /etc/timezone
  5. fi