void-packages/templates/PolicyKit/REMOVE

12 lines
193 B
Plaintext

#
# This script removes the policykit user/group.
#
case "${ACTION}" in
pre)
userdel policykit 2>&1 >/dev/null
[ $? -eq 0 ] && echo "Removed ${PKGNAME} system user/group."
;;
post)
;;
esac