debian/cubicweb-twisted.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Fri, 08 Feb 2013 18:36:00 +0100
branchstable
changeset 8723 d2472948da9c
parent 0 b97547f5f1fa
permissions -rw-r--r--
maintain python2.5 compatibility

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