1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/security/clamav-unofficial-sigs/pkg-deinstall
2021-04-06 16:31:13 +02:00

29 lines
795 B
Bash

#!/bin/sh
PATH="/bin:/sbin:/usr/bin:/usr/sbin"
if [ "$2" = "POST-DEINSTALL" ]; then
echo "**********************************************************************"
echo ""
echo "In order to completely remove clamav-unofficial-sigs you need to"
echo "completely remove its working directory and installed third-party"
echo "signature databases from ClamAV's database directory."
if [ -f "/var/db/clamav-unofficial-sigs/configs/purge.txt" ]; then
echo ""
echo "As a guide what needs to be removed you can take a look at the:"
echo ""
echo "/var/db/clamav-unofficial-sigs/configs/purge.txt"
echo ""
echo "file, which lists all files related to clamav-unofficial-sigs."
fi
echo ""
echo "**********************************************************************"
fi
exit 0