debian/cubicweb-server.prerm
author Florent Cayré <florent.cayre@gmail.com>
Tue, 15 Nov 2016 00:12:34 +0100
branch3.24
changeset 11828 a06cf11f7d87
parent 0 b97547f5f1fa
permissions -rw-r--r--
[test] Fix language negotiation test At least when executed alone (there seems to be a test isolation problem which I could not figure out).

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