mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
8 lines
143 B
Bash
8 lines
143 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Remove dbus machine-id files on shutdown"
|
|
|
|
start() {
|
|
rm -f /etc/machine-id
|
|
rm -f /var/lib/dbus/machine-id
|
|
}
|