debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 09 Jul 2009 15:18:19 +0200
branchstable
changeset 2357 e65e352cfde3
parent 0 b97547f5f1fa
permissions -rw-r--r--
[htmlhelpers] notes about seemingly unused functions (remove for cw 3.4 ?), cleanup a bit

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