remove plc.d/omf-slicemgr as well
[plcapi.git] / plc.d / omf-slicemgr
diff --git a/plc.d/omf-slicemgr b/plc.d/omf-slicemgr
deleted file mode 100755 (executable)
index e6de42f..0000000
+++ /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