blob: 2cf582ef712831dfd694c39f1f3715df9e312336 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
set -e
# purge the config file which is created in the postinst script
if [ "$1" = purge ] ; then
rm -f /etc/golang/goinstall.conf
rmdir /etc/golang || true
fi
if [ "$1" = "purge" ] && [ -e /usr/share/debconf/confmodule ]; then
# Source debconf library.
. /usr/share/debconf/confmodule
# Remove my changes to the db.
db_purge
fi
#DEBHELPER#
|