Adding hook to remove systemd machine-id.
This commit is contained in:
parent
bc08ea0115
commit
4da218e858
|
@ -624,6 +624,7 @@ Set_defaults ()
|
|||
remove-python-py \
|
||||
remove-temporary-files \
|
||||
remove-udev-persistent-rules \
|
||||
remove-systemd-machine-id \
|
||||
update-apt-file-cache \
|
||||
update-apt-xapian-index \
|
||||
update-glx-alternative \
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Remove systemd machine id.
|
||||
#
|
||||
# This removes systemd machine id that cache that makes each system unique.
|
||||
|
||||
rm -f /etc/machine-id
|
Loading…
Reference in New Issue