debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 23 Sep 2013 14:55:56 +0200
changeset 9873 1257e909d25e
parent 0 b97547f5f1fa
permissions -rw-r--r--
[forms] consider inline creation form information as linkto info. Closes #3161121

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