post_upgrade()
{

	## move files to new location
	if [ -e /etc/freshclam.conf ]; then
		if [ -d /etc/clamav ]; then
			/usr/bin/mv /etc/freshclam.conf /etc/clamav/freshclam.conf
		fi
	fi

	if [ -e /etc/clamd.conf ]; then
                if [ -d /etc/clamav ]; then
                        /usr/bin/mv /etc/clamd.conf /etc/clamav/clamd.conf
                fi
        fi

}

op=$1
shift

$op $*
