Whitespace/style cleanups
[ext/instance-debootstrap.git] / examples / hooks / timezone
1 #!/bin/sh
2 #
3 # This is an example script that sets the timezone to a given default,
4 # or to the one of the host is none is configured.
5
6 if [ -r confdata/timezone ]; then
7   cp confdata/timezone $TARGET/etc/
8 else
9   cp /etc/timezone $TARGET/etc/
10 fi
11
12 chroot $TARGET dpkg-reconfigure --frontend noninteractive tzdata