debian/cubicweb-server.prerm
author Vincent Michel <vincent.michel@logilab.fr>
Mon, 31 Mar 2014 11:18:44 +0000
branchstable
changeset 9597 8e9db17ce129
parent 0 b97547f5f1fa
permissions -rw-r--r--
[dataimport] Correctly call rschema(rtype) in SqlGenObjectStore, closes #3694139

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