debian/cubicweb-server.prerm
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Mon, 06 Jun 2011 15:11:29 +0200
changeset 7455 694b21f0fc62
parent 0 b97547f5f1fa
permissions -rw-r--r--
[views] add columns parser and latest_retrieval to cwsource admin view

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