debian/cubicweb-twisted.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 10 Mar 2009 14:34:03 +0100
changeset 1039 95d3bfae7a9e
parent 0 b97547f5f1fa
permissions -rw-r--r--
typo

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