debian/cubicweb-server.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Mon, 16 May 2011 10:19:22 +0200
branchstable
changeset 7384 69aa88765db5
parent 0 b97547f5f1fa
permissions -rw-r--r--
[http] Make a better __repr__ for Status responce exception. This help debug.

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