9 lines
183 B
Bash
Executable file
9 lines
183 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "${TIMEZONE_DEFAULT}" > "${ROOTFS_DIR}/etc/timezone"
|
|
rm "${ROOTFS_DIR}/etc/localtime"
|
|
|
|
on_chroot << EOF
|
|
dpkg-reconfigure -f noninteractive tzdata
|
|
EOF
|