skeleton/debian/DISTNAME.prerm.tmpl
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 13 Mar 2012 14:20:28 +0100
branchstable
changeset 8302 7965f1e9f399
parent 0 b97547f5f1fa
permissions -rw-r--r--
[debian] add a watch file Allows tools like uscan to find the tarball for new debian revisions.

#!/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#