debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Mon, 18 May 2015 16:30:32 +0200 (2015-05-18)
changeset 10437 9cddd711419c
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] extract functions to start/stop a postgresql cluster
#! /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