summaryrefslogblamecommitdiff
path: root/security/drweb/pkg-deinstall
blob: 14f338e08d649d81c5fb7d842379553f718c5fbe (plain) (tree)
1
2
3
4
5
6
7
8
9








                                     

                                               
                                                                         

  
      
#!/bin/sh
# $FreeBSD$
#

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

USER=drweb

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

exit 0