debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 12 Aug 2010 10:11:49 +0200
branchstable
changeset 6101 1aff7367a20c
parent 0 b97547f5f1fa
permissions -rw-r--r--
[form, migration] etype_relation_field should not raise error, it may block migration if used for a non yet existing field

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