From 1d842f024a7718caae2a38bffcc20d499fdfa3b0 Mon Sep 17 00:00:00 2001 From: kytv Date: Sat, 10 Dec 2011 02:12:16 +0000 Subject: [PATCH] If dpkg -P i2p is run, remove /etc/default/i2p --- debian/i2p.postrm | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 debian/i2p.postrm diff --git a/debian/i2p.postrm b/debian/i2p.postrm new file mode 100644 index 000000000..1c0b5f2f4 --- /dev/null +++ b/debian/i2p.postrm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +if [ "$1" = "purge" ]; then + rm -f /etc/default/i2p +fi + +#DEBHELPER# + +exit 0