debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 28 Aug 2013 11:56:07 +0200
branchstable
changeset 9224 5c6d6a9f4fc8
parent 0 b97547f5f1fa
permissions -rw-r--r--
[datafeed] fix crash due to bad http_timeout handling. Closes #3096585

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