40 lines
1.1 KiB
Bash
Executable File
40 lines
1.1 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
# (c) Thomas Lange, 2001-2016, lange@debian.org
|
|
# (c) Michael Goetze, 2010-2011, mgoetze@mgoetze.net
|
|
|
|
error=0; trap 'error=$(($?>$error?$?:$error))' ERR # save maximum error code
|
|
|
|
echo $TIMEZONE > $target/etc/timezone
|
|
if [ -L $target/etc/localtime ]; then
|
|
ln -sf /usr/share/zoneinfo/${TIMEZONE} $target/etc/localtime
|
|
else
|
|
cp -f /usr/share/zoneinfo/${TIMEZONE} $target/etc/localtime
|
|
fi
|
|
|
|
hostname -s > $target/etc/hostname
|
|
|
|
if [ ! -e $target/etc/adjtime ]; then
|
|
printf "0.0 0 0.0\n0\nUTC\n" > $target/etc/adjtime
|
|
fi
|
|
if [ "$UTC" = "yes" ]; then
|
|
sed -i -e 's:^LOCAL$:UTC:' $target/etc/adjtime
|
|
else
|
|
sed -i -e 's:^UTC$:LOCAL:' $target/etc/adjtime
|
|
fi
|
|
|
|
# make sure a machine-id exists
|
|
if [ ! -f $target/etc/machine-id ]; then
|
|
> $target/etc/machine-id
|
|
fi
|
|
# recreate machine-id if the file is empty
|
|
if [ X"$(stat -c '%s' $target/etc/machine-id 2>/dev/null)" = X0 -a -f /bin/systemd-machine-id-setup ]; then
|
|
$ROOTCMD systemd-machine-id-setup
|
|
fi
|
|
|
|
ln -fs /proc/mounts $target/etc/mtab
|
|
|
|
rm -f $target/etc/dpkg/dpkg.cfg.d/fai $target/etc/dpkg/dpkg.cfg.d/unsafe-io
|
|
|
|
exit $error
|