From: Plom Heller Date: Wed, 9 Sep 2026 04:59:28 +0000 (+0200) Subject: Set timezone to Berlin, Germany. X-Git-Url: https://plomlompom.com/repos/booking/pick_tasks?a=commitdiff_plain;h=d19ba16cd767259bc045317bfc387cedb092c3cd;p=confplom Set timezone to Berlin, Germany. --- diff --git a/setup_scripts/_lib.sh b/setup_scripts/_lib.sh index e391142..fc4e768 100644 --- a/setup_scripts/_lib.sh +++ b/setup_scripts/_lib.sh @@ -23,6 +23,7 @@ NAME_LUKSVG=cryptolvm NAME_SWAP=swap PATH_APT_NORECOMMENDS=/etc/apt/apt.conf.d/90-no-recommends PATH_MNT_ROOT="${PATH_MNT}/root" +TIMEZONE=Europe/Berlin USERNAME=plom # constants derived from changeables @@ -233,6 +234,9 @@ start_root() { fi usermod -a -G sudo "${USERNAME}" + msg 'Setting system timezone to %s …' "${TIMEZONE}" + timedatectl set-timezone "${TIMEZONE}" + augment_profile } disable_apt_recommends() {