debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 23 Jan 2014 10:53:24 +0100
changeset 9477 07fc991612b0
parent 0 b97547f5f1fa
permissions -rw-r--r--
[migration/3.18] protect against attributes in db missing from fsschema Happens if a previous migration forgot a drop_attribute. Closes #3471609

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