debian/cubicweb-server.prerm
author Laure Bourgois <Laure.Bourgois@logilab.fr>
Thu, 02 Apr 2009 15:19:43 +0200
branch894685124c68
changeset 1213 06789a89f91f
parent 0 b97547f5f1fa
permissions -rw-r--r--
adding action to startup schema view. this action enables to download owl 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