fc52284375
- new thread manager (with better SMP support) - new switch ArchiveDetectEncrypted - new directive: ArchiveDetectEncrypted - see /usr/local/share/doc/clamav/NEWS - install html documentation to /usr/local/share/doc/clamav/html added CLAMAVUSER/CLAMAVGROUP support Adopted the port to ensure timely fixes in case I broke something :P Please reset the maintainer if TERAMOTO Masahiro shows up again.
13 lines
249 B
Bash
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
|