debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 26 Jun 2015 15:00:07 +0200
changeset 10514 b29d9904482e
parent 0 b97547f5f1fa
permissions -rw-r--r--
add use_extid_as_cwuri ext entity transform, that will be often necessary and not so easy to write at once

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