summaryrefslogtreecommitdiff
path: root/share/hooks/live/0180-remove-systemd-machine-id.hook.chroot
diff options
context:
space:
mode:
Diffstat (limited to 'share/hooks/live/0180-remove-systemd-machine-id.hook.chroot')
-rwxr-xr-xshare/hooks/live/0180-remove-systemd-machine-id.hook.chroot13
1 files changed, 0 insertions, 13 deletions
diff --git a/share/hooks/live/0180-remove-systemd-machine-id.hook.chroot b/share/hooks/live/0180-remove-systemd-machine-id.hook.chroot
deleted file mode 100755
index ed5d6bf6a..000000000
--- a/share/hooks/live/0180-remove-systemd-machine-id.hook.chroot
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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