debian/cubicweb-server.prerm
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Wed, 16 Mar 2011 09:37:46 +0100
brancholdstable
changeset 7083 b8e35cde46e9
parent 0 b97547f5f1fa
permissions -rw-r--r--
help pylint by explicitely defining some attributes * the logging functions automatically set by set_log_methods * the attributes of Hook classes (eidfrom, entity...):

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