From 770fef64c1826a04022d9071d5e25ca84ad40d1d Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 28 Jun 2013 09:18:22 +0200 Subject: [PATCH] remove plc.d/omf-slicemgr as well --- plc.d/omf-slicemgr | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100755 plc.d/omf-slicemgr diff --git a/plc.d/omf-slicemgr b/plc.d/omf-slicemgr deleted file mode 100755 index e6de42f..0000000 --- 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 -- 2.43.0