#! /bin/sh

set -e

case "$1" in
    purge)
		rm -rf /var/cache/pkg-cacher /var/log/pkg-cacher
	;;
	
esac

#DEBHELPER#

exit 0


