void-packages/srcpkgs/dbus/REMOVE

12 lines
183 B
Text
Raw Normal View History

#
# 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