10 lines
149 B
Plaintext
10 lines
149 B
Plaintext
|
#!/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
|