17 lines
378 B
SYSTEMD
17 lines
378 B
SYSTEMD
|
[Unit]
|
||
|
Description=Setup Timezone data
|
||
|
DefaultDependencies=no
|
||
|
Before=systemd-udevd.service
|
||
|
After=var.mount systemd-tmpfiles-setup.service
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
Environment=TIMEZONE=UTC
|
||
|
EnvironmentFile=-/storage/.cache/timezone
|
||
|
ExecStart=/bin/ln -sf /usr/share/zoneinfo/${TIMEZONE} /var/run/localtime
|
||
|
RemainAfterExit=yes
|
||
|
StartLimitInterval=0
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=sysinit.target
|