-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timezone is no longer persisted due to read-only root file system #78
Comments
My current understanding: Options:
|
Setting the TZ variable in /opt/yio/app-launch.sh works fine. I think this is the easiest way to make the timezone user configurable with a read-only root filesystem and leaving systemd untouched.
Alternatively a profile.d entry with a bind-mount could be used. |
The system time is now set to UTC. The user timezone can be set with /boot/timezone containing a single line with the TZ name. This resolves #78
The system time is now set to UTC. The user timezone can be set with /boot/timezone containing a single line with the TZ name. This resolves #78
The system time is now set to UTC. The user timezone can be set with /boot/timezone containing a single line with the TZ name. This resolves #78
Description
After introducing the read-only root file system, the timezone can no longer be set with
timedatectl set-timezone
.How to Reproduce
Steps to reproduce the behavior:
timedatectl set-timezone UTC
date
: back to CESTExpected behavior
Timezone can be set and is persisted during reboots.
Your Environment
Additional context
The
/etc
file system overlay is only an in-memory overlay which is not persisted during reboots.The text was updated successfully, but these errors were encountered: