12 lines
175 B
Text
12 lines
175 B
Text
|
#
|
||
|
# 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
|