f05f55cfdd
* VDI server with temporary encrypted /home
7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
TZ="${TZ:-UTC}"
|
|
printf "%s\n" "${TZ}" > /etc/timezone
|
|
unlink /etc/localtime && ln -s "/usr/share/zoneinfo/${TZ}" /etc/localtime
|