debian/cubicweb-twisted.prerm
author Vladimir Popescu <vladimir.popescu@logilab.fr>
Tue, 02 Apr 2013 12:05:51 +0200
changeset 8835 3612b760488b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[dataimport] Slight message modification in exception handling code.

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