X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc.d%2Fomf-slicemgr;h=77e3ffc4a4cecffa2fc191acac99eafd0f6e4555;hb=fe81b2c91b436b1882f63023413c7f51b29538ed;hp=cf1aecdd99acf3d92a5a01aebc421069693a5707;hpb=765d57b8d71cbd8a662f475f9367d1aaf31ccd35;p=plcapi.git diff --git a/plc.d/omf-slicemgr b/plc.d/omf-slicemgr index cf1aecd..77e3ffc 100755 --- a/plc.d/omf-slicemgr +++ b/plc.d/omf-slicemgr @@ -23,10 +23,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