debian/cubicweb-twisted.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Thu, 20 Dec 2012 12:14:14 +0100
branchstable
changeset 8628 b236b91836c0
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] fix req default value handling in CubicWebTC.view (closes #2544376) It's no more than the standard ``if rset`` vs. ``if rset is None`` error.

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