debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 19 Oct 2009 15:20:43 +0200
changeset 3722 c414f402cbff
parent 0 b97547f5f1fa
permissions -rw-r--r--
2.4 compat

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