debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 16 Sep 2011 16:42:42 +0200
branchstable
changeset 7806 aa30c665bd06
parent 0 b97547f5f1fa
permissions -rw-r--r--
[refactoring] introduce add_etype_button function to properly create button to add a new entity also properly use cw_create_url to generate the URL to add the entity

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