debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 08 Jul 2014 10:34:50 +0200
changeset 9918 228c3571e222
parent 0 b97547f5f1fa
permissions -rw-r--r--
[entities, view] delete dead code The auto_unwrap_bw_compat metaclass calls unwrap_adapter_compat, which was removed in changeset 697a8181ba30 "remove 3.9 bw compat". So this can't possibly work anymore, meaning we can get rid of it.

#! /bin/sh -e
 
case "$1" in
    remove)
	if [ -x "/etc/init.d/cubicweb-ctl" ]; then
	    invoke-rc.d cubicweb-ctl stop || true
	fi
    ;;
esac
 
#DEBHELPER#
 
exit 0