vp-build/srcpkgs/avahi/REMOVE

14 lines
273 B
Plaintext
Raw Normal View History

#
# This script removes the avahi and netdev user/group.
#
case "${ACTION}" in
pre)
userdel avahi &>/dev/null
[ $? -eq 0 ] && echo "Removed avahi system user/group."
userdel netdev &>/dev/null
[ $? -eq 0 ] && echo "Removed netdev system user/group."
;;
post)
;;
esac