debian/cubicweb-server.prerm
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Tue, 20 Mar 2012 18:29:13 +0100
changeset 8325 7f2337d7937f
parent 0 b97547f5f1fa
permissions -rw-r--r--
[static-file] return Unauthorized on blocked directory listing This is more appropriate than 404 NOT FOUND

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