Files
server/var/lib/dpkg/info/dbus-daemon.postrm
2026-01-07 20:52:11 +01:00

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