debian/cubicweb-twisted.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 31 May 2012 15:56:21 +0200
changeset 8430 5bee87a14bb1
parent 0 b97547f5f1fa
permissions -rw-r--r--
fix ldap removal handling in ldapfeed (closes #2376625 and #2385133)

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