#!/bin/sh
set -e
if [ "$1" = purge ]
then
	update-rc.d atd remove >/dev/null;
	rm -rf /var/spool/cron/atjobs /var/spool/cron/atspool
fi

