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

set -e

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

#DEBHELPER#
