debian/cubicweb-server.prerm
author Florent Cayré <florent.cayre@logilab.fr>
Mon, 14 Nov 2016 17:48:10 +0100
branch3.24
changeset 11816 6392f34fcdad
parent 0 b97547f5f1fa
permissions -rw-r--r--
[pyramid] Fix login error message language Use http negotiation unless language is explicitly set for the site. Closes #16236485.

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