debian/cubicweb-server.prerm
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 26 Jan 2010 10:24:50 +0100
changeset 4353 7db69db4913c
parent 0 b97547f5f1fa
permissions -rw-r--r--
command may now officially be either a string or a list, don't make think it's for backward compat

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