#! /bin/sh

set -e

if [ "$1" = purge ]; then
	echo "Purging \"/etc/suid.conf\"..."
	rm -f /etc/suid.conf
	echo "There may still be backups in \"/var/backups\"."
fi
