debian/cubicweb-twisted.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Fri, 22 Feb 2013 19:36:40 +0100
changeset 8719 539ed3fb27cb
parent 0 b97547f5f1fa
permissions -rw-r--r--
[towards py3k] import reduce() from functools (part of #2711624)

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