debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 17 Jun 2010 15:02:22 +0200
branchstable
changeset 5769 b3b48e0b8e3b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[autoform] do not show remove link for inline form if card == 1

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