debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 04 Feb 2010 11:33:09 +0100
branchstable
changeset 4454 aba1b563705b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[request] add a note about the encoding mgmt (or lack thereof)

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