debian/cubicweb-server.prerm
author Christophe de Vienne <christophe@unlish.com>
Thu, 21 Aug 2014 22:42:48 +0200
changeset 9945 cf5b0d0f5731
parent 0 b97547f5f1fa
permissions -rw-r--r--
[wsgi] add the --debug / -D option to the wsgi command

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