debian/cubicweb-server.prerm
author Alexandre Fayolle <alexandre.fayolle@logilab.fr>
Fri, 28 Oct 2011 17:54:24 +0200
changeset 8050 0f3a54c37b05
parent 0 b97547f5f1fa
permissions -rw-r--r--
[table view, workflow] fix the display of wf history table (closes: #2065652) was relying on no more used 'cell' 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