skeleton/debian/DISTNAME.prerm.tmpl
branchstable
changeset 8463 a964c40adbe3
parent 8461 8af7c6d86efb
parent 8459 1931953226f2
child 8465 12da4415aff0
--- a/skeleton/debian/DISTNAME.prerm.tmpl	Tue Jul 10 10:33:19 2012 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-#!/bin/sh -e
-
-delete_pyo_pyc () {
-  find /usr/share/cubicweb/cubes/%(cubename)s -name "*.pyc" | xargs rm -f
-  find /usr/share/cubicweb/cubes/%(cubename)s -name "*.pyo" | xargs rm -f
-}
-
-
-case "$1" in
-    failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-    upgrade)
-    delete_pyo_pyc
-    ;;
-    remove)
-    delete_pyo_pyc
-    ;;
-    purge)
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-
-esac
-
-#DEBHELPER#