summaryrefslogtreecommitdiff
path: root/debian/python-configshell.prerm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/python-configshell.prerm')
-rwxr-xr-xdebian/python-configshell.prerm8
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/python-configshell.prerm b/debian/python-configshell.prerm
new file mode 100755
index 0000000..866a5c2
--- /dev/null
+++ b/debian/python-configshell.prerm
@@ -0,0 +1,8 @@
+#!/bin/sh
+for lib in lib lib64; do
+ for python in python2.6; do
+ if [ -e /usr/${lib}/${python}/configshell ]; then
+ rm -rf /usr/${lib}/${python}/configshell
+ fi
+ done
+done