# REMOVE
case "$ACTION" in
pre)
	# Only if not updating
	if [ "$UPDATE" != "yes" ]; then
		# Remove the clamav database directory and contents
		rm -rf var/lib/_clamav
	fi
	;;
esac

