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