2016-01-29 15:42:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# see: dh_installdeb(1)
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# summary of how this script can be called:
|
|
|
|
# * <prerm> `remove'
|
|
|
|
# * <old-prerm> `upgrade' <new-version>
|
|
|
|
# * <new-prerm> `failed-upgrade' <old-version>
|
|
|
|
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
|
|
|
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
|
|
|
# <package-being-installed> <version> `removing'
|
|
|
|
# <conflicting-package> <version>
|
|
|
|
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
|
|
# the debian-policy package
|
|
|
|
|
2016-01-29 16:47:30 +00:00
|
|
|
SBINDIR=@SBINDIR@
|
|
|
|
pyprefix=@pyprefix@
|
|
|
|
pythondir=@pythondir@
|
|
|
|
|
2016-01-29 15:42:02 +00:00
|
|
|
core_daemon_stop()
|
|
|
|
{
|
|
|
|
if [ -x /etc/init.d/core-daemon ]; then
|
|
|
|
/etc/init.d/core-daemon stop
|
|
|
|
fi
|
|
|
|
|
2016-01-29 16:47:30 +00:00
|
|
|
if [ -x $SBINDIR/core-cleanup ]; then
|
|
|
|
$SBINDIR/core-cleanup
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d $pythondir/core ]; then
|
|
|
|
find $pythondir/core -name '*.pyc' -delete
|
2016-01-29 15:42:02 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
remove|upgrade|deconfigure)
|
|
|
|
core_daemon_stop > /dev/null 2>&1
|
|
|
|
;;
|
|
|
|
|
|
|
|
failed-upgrade)
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "prerm called with unknown argument \`$1'" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# dh_installdeb will replace this with shell code automatically
|
|
|
|
# generated by other debhelper scripts.
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
exit 0
|