vp-build/srcpkgs/avahi/REMOVE
Juan RP 54658e4cc5 Added avahi-0.6.25 build template.
--HG--
extra : convert_revision : ddfec312cf9657158ba3af47f902c9d2441c7e15
2009-12-08 10:51:53 +01:00

14 lines
273 B
Plaintext

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