debian/cubicweb-server.prerm
author sylvain.thenault@logilab.fr
Wed, 11 Feb 2009 15:20:32 +0100
changeset 581 09f87f2c535e
parent 0 b97547f5f1fa
permissions -rw-r--r--
update_search_state in the publisher since it should be done whatever the controller

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