8 lines
144 B
Plaintext
8 lines
144 B
Plaintext
|
#!/usr/bin/with-contenv bash
|
||
|
|
||
|
if [ -n "${TZ}" ]
|
||
|
then
|
||
|
ln -snf "/usr/share/zoneinfo/${TZ}" /etc/localtime
|
||
|
echo "${TZ}" > /etc/timezone
|
||
|
fi
|