Skip to content
Snippets Groups Projects
Forked from uffd / uffd
163 commits behind the upstream repository.
postrm 282 B
#!/bin/sh

set -e

case "$1" in
	purge)
		delgroup uffd || true
		userdel uffd || true
		rm -rf /var/lib/uffd
	;;
	remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
	;;
	*)
		echo "postrm called with unknown argument \`$1'" >&2
		exit 1
esac

#DEBHELPER#

exit 0