Fix Timezone detection for Arch
This commit is contained in:
parent
58ca7709ba
commit
51e0c137c8
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ function derive_entropy() {
|
|||
printf "%s" "${identifier}" | openssl dgst -sha256 -hmac "${tipi_seed}" | sed 's/^.* //'
|
||||
}
|
||||
|
||||
TZ="$(cat /etc/timezone | sed 's/\//\\\//g' || echo "Europe/Berlin")"
|
||||
TZ="$(timedatectl | grep "Time zone" | awk '{print $3}') || Europe/Berlin"
|
||||
|
||||
# Copy the app state if it isn't here
|
||||
if [[ ! -f "${STATE_FOLDER}/apps.json" ]]; then
|
||||
|
|
Loading…
Reference in a new issue