mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-02 10:52:02 +00:00
This will cause breakage because the files are left there. Other packages can add new groups which re-use the old IDs and you end up with weird and unintentional ACLs. See also https://wiki.debian.org/AccountHandlingInMaintainerScripts
13 lines
203 B
Bash
13 lines
203 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
purge)
|
|
rm -f /var/lib/systemd/catalog/database
|
|
rmdir --ignore-fail-on-non-empty /var/lib/systemd/catalog 2> /dev/null || true
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|