debian/cubicweb-twisted.prerm
author Sandrine Ribeau <sandrine.ribeau@logilab.fr>
Tue, 07 Jul 2009 17:41:56 -0700
changeset 2318 17f7c3990f9b
parent 0 b97547f5f1fa
permissions -rw-r--r--
Fix shell script execution command.

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