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