Use UTC instead of localtime

This commit is contained in:
nils 2024-06-05 10:32:46 +02:00
parent f4595c1bc6
commit 2a4df0dab4

View file

@ -41,10 +41,10 @@ The other setup scripts can be used to configure key aspects of the system. Besi
> The root password does not really matter because it is going to be locked after a user has been created. > The root password does not really matter because it is going to be locked after a user has been created.
Set the `hwclock` to use `localtime` instead of `UTC` in `/etc/conf.d/hwclock`: Set the `hwclock` to use `UTC` in `/etc/conf.d/hwclock` and disable writing the time to hardware. Running a NTP negates its usability.
``` ```
clock="local" clock="UTC"
clock_hctosys="NO" clock_hctosys="NO"
clock_systohc="NO" clock_systohc="NO"
``` ```