12 lines
190 B
Plaintext
12 lines
190 B
Plaintext
|
#
|
||
|
# 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
|