#!/bin/sh
# postrm script for chasquid
# Script executed after the package is removed.

set -e

case "$1" in
  purge)
        rm -rf /var/lib/chasquid
	# We do NOT remove the system user.
	;;
esac

#DEBHELPER#
