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

