acd07f61e3
--HG-- extra : convert_revision : dfd737c502bea327054ecff5bc1fa152db6e2009
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
|