debian/cubicweb-server.prerm
author Rabah Meradi <rabah.meradi@logilab.fr>
Wed, 03 Jun 2015 17:21:05 +0200
changeset 10376 b566c8081832
parent 0 b97547f5f1fa
permissions -rw-r--r--
[doc] the instance is sytweb_instance and sytweb is the cube

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