aboutsummaryrefslogtreecommitdiffstats
path: root/hook/hostname
blob: a612fef355ac323bd959a5cb9d404a912d554235 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

run_latehook() {
	local newroot="/new_root/"
	if [[ -n "${hostname}" ]]; then
		msg ":: Setting hostname for main system to '${hostname}'..."
	elif [[ -e /sys/class/dmi/id/product_uuid ]]; then
		msg ":: Setting hostname to first bits of product uuid..."
		hostname="$(cut -d- -f1 < /sys/class/dmi/id/product_uuid)"
	else
		msg ":: Setting hostname to random string..."
		hostname="$(cut -d- -f1 < /proc/sys/kernel/random/boot_id)"
	fi

	echo -n "${hostname}" > "${newroot}/etc/hostname"
	sed -i "/^127.0.0.1/s/$/\t${hostname}/" "${newroot}/etc/hosts"
}