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