13 lines
160 B
Bash
Executable File
13 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "purge" ] ; then
|
|
rm -f "${DPKG_ROOT:-/}var/lib/dbus/machine-id"
|
|
rmdir "${DPKG_ROOT:-/}var/lib/dbus" || true
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|