debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 22 Jul 2014 17:22:23 +0200
branchstable
changeset 9912 a84922befb89
parent 0 b97547f5f1fa
permissions -rw-r--r--
Fix Binary.__eq__ (closes #4172701) Due to a typo we always returned true, which was unhelpful.

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