#!/bin/sh -e

if [ "$1" = "purge" ]
then
	echo -n "  Shall I also remove the whole lintian tree (Y/n)?"; read ans
	if [ "$ans" = "y" -o "$ans" = "Y" ]; then
		lintian --remove-lab
	fi
fi
