debian/cubicweb-twisted.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 25 Apr 2013 12:24:26 +0200
changeset 8933 ac76925268a3
parent 0 b97547f5f1fa
permissions -rw-r--r--
[mail] drop hijack_user usage The transaction is now commited before notification. We can create a new session directly and drop `hijack_user` usage. This prepare #2781782

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