debian/cubicweb-server.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Thu, 13 Oct 2016 15:16:38 +0200
changeset 11791 20555214576b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[massive store] master_init should commit by default Default client usage is to create a master store to control slave ones. They need to access cwmassive_initialized from another transaction

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