debian/cubicweb-server.prerm
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Tue, 22 Jan 2013 18:16:20 +0100
changeset 8670 f02139297beb
parent 0 b97547f5f1fa
permissions -rw-r--r--
prefix "tcp://" zmq uris with "zmqpickle" (closes #2574114) * it turns "tcp://" into "zmqpickle-tcp://" * will leave room for future non-pickling communications using zmq

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