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