freebsd-ports/security/clamav-devel/pkg-deinstall
Pav Lucistnik 3e7c489b9d - Update to 20041101
- Configuration file was renamed to clamd.conf!

PR:		ports/73491
Submitted by:	Rob Evers <rob@debank.tv> (maintainer)
2004-11-04 22:49:52 +00:00

13 lines
249 B
Bash

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