X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=examples%2Fomf%2Fnepi_omf5_plexus_stdin.py;fp=examples%2Fomf%2Fnepi_omf_stdin_exp.py;h=f856c1b583c2ef249d5049ea2a39f9c3d303783e;hb=f025a30a215310a9803067a25e244137b71f56f2;hp=b19a40190ab10ba3fe11d9a583871a6516535299;hpb=e55b2f40b75bd704ca0f2ad03e78511fbca0791e;p=nepi.git diff --git a/examples/omf/nepi_omf_stdin_exp.py b/examples/omf/nepi_omf5_plexus_stdin.py similarity index 91% rename from examples/omf/nepi_omf_stdin_exp.py rename to examples/omf/nepi_omf5_plexus_stdin.py index b19a4019..f856c1b5 100644 --- a/examples/omf/nepi_omf_stdin_exp.py +++ b/examples/omf/nepi_omf5_plexus_stdin.py @@ -50,17 +50,18 @@ ec = ExperimentController() # Create and Configure the Nodes node1 = ec.register_resource("OMFNode") ec.set(node1, 'hostname', 'omf.plexus.wlab17') -ec.set(node1, 'xmppSlice', "nepi") -ec.set(node1, 'xmppHost', "xmpp-plexus.onelab.eu") +ec.set(node1, 'xmppServer', "nepi") +ec.set(node1, 'xmppUser', "xmpp-plexus.onelab.eu") ec.set(node1, 'xmppPort', "5222") ec.set(node1, 'xmppPassword', "1234") +ec.set(node1, 'version', "5") # Create and Configure the Application app1 = ec.register_resource("OMFApplication") ec.set(app1, 'appid', "robot") -ec.set(app1, 'path', "/root/CTRL_test.rb") -ec.set(app1, 'args', "coord.csv") +ec.set(app1, 'command', "/root/CTRL_test.rb coord.csv") ec.set(app1, 'env', "DISPLAY=localhost:10.0 XAUTHORITY=/root/.Xauthority") +ec.set(app1, 'version', "5") # Connection ec.register_connection(app1, node1)