debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 25 Jan 2010 19:16:35 +0100
changeset 4338 0eb7efcbcee1
parent 0 b97547f5f1fa
permissions -rw-r--r--
to ease overriding of field.choices using *function* (set using autoform_field_kwargs), give the field as named argument

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