skeleton/debian/DISTNAME.prerm.tmpl
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Fri, 28 Oct 2011 17:54:24 +0200
changeset 8050 0f3a54c37b05
parent 0 b97547f5f1fa
permissions -rw-r--r--
[table view, workflow] fix the display of wf history table (closes: #2065652) was relying on no more used 'cell' view

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