blob: d63ce6b40481a0a017fcbb295e366f055146098c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# vim: set ts=4 sw=4 et:
install -m0664 -o root -g utmp /dev/null /run/utmp
halt -B # for wtmp
if [ -z "$VIRTUALIZATION" ]; then
msg "Seeding random number generator..."
seedrng || true
fi
msg "Setting up loopback interface..."
ip link set up dev lo
[ -r /etc/hostname ] && read -r HOSTNAME < /etc/hostname
if [ -n "$HOSTNAME" ]; then
msg "Setting up hostname to '${HOSTNAME}'..."
printf "%s" "$HOSTNAME" > /proc/sys/kernel/hostname
else
msg_warn "Didn't setup a hostname!"
fi
if [ -n "$TIMEZONE" ]; then
msg "Setting up timezone to '${TIMEZONE}'..."
ln -sf "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime
fi
|