debian/cubicweb-twisted.prerm
author pierre-yves
Mon, 27 May 2013 16:42:39 +0200
changeset 9023 67f242261dd3
parent 0 b97547f5f1fa
permissions -rw-r--r--
[connection] give access to is_internal_session boolean Needed if we are to use this object like we currently do with session. Related to #2503918

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