#! /bin/sh # postrm script for gwtp # # see: dh_installdeb(1) set -e if [ "$1" = "purge" ] then # Try to remove log files (Policy 11.8) rm /var/log/gwtp.log* 2>/dev/null || true # Try to remove the configuration file rm /etc/default/gwtp 2>/dev/null || true fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER#