debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 15 Jul 2014 16:07:59 +0200
changeset 10001 1245357b3b3e
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web] add support for HttpOnly cookie flag And use it for session cookies. Closes #4142521.

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