debian/cubicweb-server.prerm
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Tue, 17 Feb 2009 12:47:07 +0100 (2009-02-17)
branchtls-sprint
changeset 652 603c782dc092
parent 0 b97547f5f1fa
permissions -rw-r--r--
various SyntaxErrors / missing import fixes + reorganization of the `registered` classmethod
#! /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