debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 20 Jun 2011 12:55:40 +0200
branchstable
changeset 7538 849c04098f3f
parent 0 b97547f5f1fa
permissions -rw-r--r--
[migration] when there are no data migration needed, we still want to rewrite the configuration and to restart the server. Closes #1760927

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