#!/bin/sh
set -e

case "$1" in
	purge)
        if which ucf >/dev/null; then
    		ucf --purge /etc/smsd.conf
        fi
		rm -f /etc/smsd.conf
		rm -rf /var/log/smstools
		rm -rf /var/run/smstools
		rm -f /var/log/smsd.log /var/log/smsd_stats
	;;
esac

#DEBHELPER#
