#!/bin/sh

if [ "$1" = "purge" ]
then
	/usr/sbin/update-rc.d anacron remove >/dev/null

# here for historical reasons
	rm -f /var/log/anacron /var/log/anacron.[0-9]*
	rm -f /var/spool/anacron/*
fi

