aboutsummaryrefslogblamecommitdiff
path: root/security/clamav-devel/pkg-deinstall
blob: 2072120152962d352b08602fc016f9f1180578b8 (plain) (tree)
1
2
3
4
5
6



                                     

              






                                                                                           
#!/bin/sh
# $FreeBSD$

if [ "$2" != "POST-DEINSTALL" ]; then
	exit 0
fi

CLAMAVUSER=%%CLAMAVUSER%%

if pw usershow "${CLAMAVUSER}" 2>/dev/null 1>&2; then
	echo "To delete ${CLAMAVUSER} user permanently, use 'pw userdel \"${CLAMAVUSER}\"'"
fi
exit 0