vp-build/templates/PolicyKit/REMOVE

12 lines
190 B
Plaintext
Raw Normal View History

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