debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 10 Sep 2012 13:59:25 +0200
changeset 8549 0740ffe73df1
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] reindent and use request() rather than bare session this avoid error due to implementation details of session

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