X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc.d%2Fomf-slicemgr;h=e6de42f2c0c08f85c99f1ba40d461f1615b3e8fe;hb=e42146067a41cd93ea01a822fdc7bcd976c64cb6;hp=985cd6d985bea921849e1ca2264c62d7abc8481b;hpb=1cda98c34563ed3e90a9d2219730ae81f9705dc6;p=plcapi.git diff --git a/plc.d/omf-slicemgr b/plc.d/omf-slicemgr index 985cd6d..e6de42f 100755 --- a/plc.d/omf-slicemgr +++ b/plc.d/omf-slicemgr @@ -1,6 +1,4 @@ #!/bin/bash -# $Id$ -# $URL$ # # priority: 800 # @@ -23,10 +21,24 @@ case "$1" in MESSAGE=$"Starting the OMF Slice Manager" dialog "$MESSAGE" - daemon /usr/bin/omf-slicemgr.py + 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