debian/cubicweb-twisted.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Mon, 13 Dec 2010 19:46:24 +0100
brancholdstable
changeset 6747 63bf61e4e130
parent 0 b97547f5f1fa
permissions -rw-r--r--
[security] fix access control problem

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