diff --git a/.templates/00-global_var.sh b/.templates/00-env_var.sh similarity index 93% rename from .templates/00-global_var.sh rename to .templates/00-env_var.sh index c43cef108..222428cc5 100755 --- a/.templates/00-global_var.sh +++ b/.templates/00-env_var.sh @@ -142,15 +142,3 @@ for KEYS in "${arr[@]}"; do export_option "$KEYS" "$VALUE" fi done - -################ -# Set timezone # -################ -set +eu - -if [ -n "$TZ" ] && [ -f /etc/localtime ]; then - if [ -f /usr/share/zoneinfo/"$TZ" ]; then - echo "Timezone set from $(cat /etc/timezone) to $TZ" - ln -snf /usr/share/zoneinfo/"$TZ" /etc/localtime && echo "$TZ" > /etc/timezone - fi -fi