debian/cubicweb-twisted.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 30 Jun 2011 16:26:37 +0200
changeset 7590 a9aad6c25836
parent 0 b97547f5f1fa
permissions -rw-r--r--
closes #1793991: [datafeed] error handling: log unexpected exceptions / don't stop on first validation error

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