summaryrefslogtreecommitdiffstats
path: root/system-build/share/hooks/normal/0180-remove-systemd-machine-id.hook.chroot
blob: ed5d6bf6a3665b6d062d4fb4dfffbbca96d51743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

# Blank out systemd machine id. If it does not exist, systemd-journald
# will fail, but if it exists and is empty, systemd will automatically
# set up a new unique ID.

if [ -e /etc/machine-id ]
then
	rm -f /etc/machine-id
	: > /etc/machine-id
fi