dépot de construction du paquet geneweb
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
400 B

#! /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#