debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 04 Dec 2012 13:41:20 +0100
branchstable
changeset 8616 820cb9cee702
parent 0 b97547f5f1fa
permissions -rw-r--r--
[migration] fix crash when adding a new meta relation type. Closes #2532483

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