summaryrefslogtreecommitdiffstats
path: root/debian/wide-dhcpv6-relay.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/wide-dhcpv6-relay.postrm')
-rw-r--r--debian/wide-dhcpv6-relay.postrm18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/wide-dhcpv6-relay.postrm b/debian/wide-dhcpv6-relay.postrm
new file mode 100644
index 0000000..dac56af
--- /dev/null
+++ b/debian/wide-dhcpv6-relay.postrm
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ purge)
+ if [ -e /etc/default/wide-dhcpv6-relay ]; then
+ rm -f /etc/default/wide-dhcpv6-relay
+ fi
+ ;;
+ *)
+ # Nothing to do...
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0