debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 10 Jun 2010 14:16:48 +0200
changeset 5713 605f571198eb
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)

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