[SCM] Debian packaging of Pinto CPAN distribution branch, master, updated. 1d3e38d2e8a4c7d525f3a583fa249b280e48b870

Oleg Gashev oleg at gashev.net
Fri May 31 14:59:04 UTC 2013


The following commit has been merged in the master branch:
commit 1d3e38d2e8a4c7d525f3a583fa249b280e48b870
Author: Oleg Gashev <oleg at gashev.net>
Date:   Fri May 31 14:57:57 2013 +0000

    Added postrm script.

diff --git a/debian/postrm b/debian/postrm
new file mode 100644
index 0000000..3861d60
--- /dev/null
+++ b/debian/postrm
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+       
+    purge)
+
+        rm -rf /var/log/pinto
+    ;;
+
+    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+
+        ;;
+
+    *)
+
+        echo "postrm called with unknown argument \`$1'" >&2
+        exit 1
+
+esac
+
+#DEBHELPER#
+
+exit 0
+

-- 
Debian packaging of Pinto CPAN distribution



More information about the Pkg-perl-cvs-commits mailing list