debian/cubicweb-twisted.prerm
author David Douard <david.douard@logilab.fr>
Mon, 27 Jul 2015 10:00:32 +0200
changeset 11059 42a4d52dc88d
parent 0 b97547f5f1fa
permissions -rw-r--r--
[views] fix ProcessInformationView: SESSION_MANAGER can be None (closes #5753280) eg. with pyramid. (grafted from 6a07c2dc3d85f4de0cf48221607e02c4473e11e4)

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