6 lines
127 B
Bash
Executable file
6 lines
127 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
# shellcheck disable=SC1091
|
|
source /installers/config
|
|
${APT_GET} tzdata
|
|
echo "${DEFAULT_TZ}" >/etc/timezone
|