debian/cubicweb-server.prerm
author Katia Saurfelt <katia.saurfelt@logilab.fr>
Thu, 09 Feb 2012 09:52:02 +0100
branchstable
changeset 8209 67660d5f1916
parent 0 b97547f5f1fa
permissions -rw-r--r--
[migration] `add_relation_type` warns and add missing definitions on already existing rtypes (closes #2121979)

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