mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
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.
14 lines
249 B
Bash
14 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
|