debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 06 May 2014 15:59:39 +0200
changeset 9737 c6f47e635845
parent 0 b97547f5f1fa
permissions -rw-r--r--
[wsgi] look at wsgi.url_scheme to decide if we're on https The server/gateway is supposed to fill it in for us.

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