vp-build/templates/dbus/REMOVE

12 lines
175 B
Plaintext
Raw Normal View History

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