debian/cubicweb-twisted.prerm
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Fri, 02 Apr 2010 14:28:43 +0200
branchstable
changeset 5139 61b607c8571b
parent 0 b97547f5f1fa
permissions -rw-r--r--
catch and log errors caused by bad json data

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