debian/cubicweb-server.prerm
author Florent <florent@secondweb.fr>
Wed, 29 Apr 2009 11:06:13 +0200
branchtls-sprint
changeset 1543 dca9817bb337
parent 0 b97547f5f1fa
permissions -rw-r--r--
fix use-request-subdomain option behaviour and add tests

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