register_resource accepts a keyword argument, so that subsequent calls to ec.set...
[nepi.git] / examples / linux / hello_world.py
index 2e026b5..edb195d 100644 (file)
@@ -47,21 +47,22 @@ ssh_key = options.ssh_key
 
 ec = ExperimentController(exp_id = "src-up-exp")
         
-node = ec.register_resource("linux::Node")
-ec.set(node, "hostname", hostname)
-ec.set(node, "username", username)
-ec.set(node, "identity", ssh_key)
-ec.set(node, "cleanExperiment", True)
-ec.set(node, "cleanProcesses", True)
+node = ec.register_resource("linux::Node",
+                            hostname = hostname,
+                            username =username,
+                            identity = ssh_key,
+                            cleanExperiment = True,
+                            cleanProcesses = True)
 
 path_to_sources = os.path.join(
         os.path.dirname(os.path.realpath(__file__)),
         "hello.c")
 
-app = ec.register_resource("linux::Application")
-ec.set(app, "sources", path_to_sources)
-ec.set(app, "build", "gcc ${SRC}/hello.c -o ${BIN}/hello")
-ec.set(app, "command", "${BIN}/hello")
+app = ec.register_resource("linux::Application",
+                           sources = path_to_sources,
+                           build = "gcc ${SRC}/hello.c -o ${BIN}/hello",
+                           command = "${BIN}/hello")
+
 ec.register_connection(node, app)
 
 ec.deploy()