V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m38s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-08 21:15:41 +02:00
parent 6d255e9c07
commit 980f81bfb3
12 changed files with 47 additions and 37 deletions

View File

@@ -12,26 +12,20 @@
guard_sourcing
###########################################################################################
# Configure timezone
#######################################
# Configure timezone.
# Globals:
# MODULE_ERR
# MODULE_TXT
# TARGET
# ntp_timezone
# Arguments:
# None
###########################################################################################
# Returns:
# 0: Successfully executed commands.
#######################################
setup_timezone() {
### Reminder ###
# ls /usr/share/zoneinfo
do_in_target "${TARGET}" ln -sf /usr/share/zoneinfo/"${ntp_timezone}" /etc/localtime
do_in_target "${TARGET}" /bin/bash -c "echo ${ntp_timezone} | tee /etc/timezone"
do_in_target "${TARGET}" dpkg-reconfigure -f noninteractive tzdata
do_log "info" "false" "Timezone changed to '${ntp_timezone}' executed in: '${TARGET}'."
do_show_footer "${MODULE_TXT}"
return 0
}
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh:
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh