debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 13 May 2011 13:40:48 +0200 (2011-05-13)
changeset 7380 5ad8b2f951ba
parent 0 b97547f5f1fa
permissions -rw-r--r--
[web data] fix datadir handling to avoid web test failure introduced somewhere in default branch
#! /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