debian/cubicweb-server.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Thu, 13 Oct 2016 15:12:33 +0200
changeset 11790 04607da552ac
parent 0 b97547f5f1fa
permissions -rw-r--r--
[massive store] isolate SQL statements that one may want to customize i.e. provide public methods for meta data insertions

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