debian/cubicweb-server.prerm
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Wed, 06 Oct 2010 15:32:59 +0200
branchstable
changeset 6405 6989f0e02542
parent 0 b97547f5f1fa
permissions -rw-r--r--
fix some issues in DotGraphView, and enhance reusability

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