#!/bin/sh
# postrm script for phpwebcounter

set -eu

if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then

	if [ "$1" = "purge" ]; then
		rm -rf /var/lib/phpwebcounter
	fi
fi

#DEBHELPER#

exit 0
