From: Thierry Parmentelat Date: Fri, 28 Jun 2013 07:18:22 +0000 (+0200) Subject: remove plc.d/omf-slicemgr as well X-Git-Tag: plcapi-5.2-7~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=770fef64c1826a04022d9071d5e25ca84ad40d1d;p=plcapi.git remove plc.d/omf-slicemgr as well --- diff --git a/plc.d/omf-slicemgr b/plc.d/omf-slicemgr deleted file mode 100755 index e6de42f2..00000000 --- a/plc.d/omf-slicemgr +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -# -# priority: 800 -# - - -# Source function library and configuration -. /etc/plc.d/functions -. /etc/planetlab/plc_config -local_config=/etc/planetlab/configs/site.xml - -# Be verbose -set -x - -case "$1" in - start) - if [ "$PLC_OMF_ENABLED" != "1" ] ; then - exit 0 - fi - - MESSAGE=$"Starting the OMF Slice Manager" - dialog "$MESSAGE" - - daemon /usr/bin/omf_slicemgr.py & - - result "$MESSAGE" - ;; - - stop) - if [ "$PLC_OMF_ENABLED" != "1" ] ; then - exit 0 - fi - - MESSAGE=$"Stopping the OMF Slice Manager" - dialog "$MESSAGE" - - killproc omf_slicemgr.py - - result "$MESSAGE" - ;; - -esac - -exit $ERRORS