summaryrefslogtreecommitdiff
path: root/security/clamav/pkg-deinstall
blob: fa1db68a69297c33636b19df7bcb357938facae5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# $FreeBSD$

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

USER=clamav

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