debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 15 Jul 2013 11:45:37 +0200
branchstable
changeset 9220 3b437196c2d8
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web/views] make PrimaryView.entity_call accept kwargs It's useful when using this view in a different context to have it not crash on random arguments.

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