Changing ResourceManager naming for platform::ResourceName
[nepi.git] / examples / linux / hello_world.py
index 172547f..b768899 100644 (file)
@@ -46,18 +46,18 @@ ssh_key = options.ssh_key
 
 ec = ExperimentController(exp_id = "src-up-exp")
         
-node = ec.register_resource("LinuxNode")
+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, "cleanHome", True)
+ec.set(node, "cleanExperiment", True)
 ec.set(node, "cleanProcesses", True)
 
 path_to_sources = os.path.join(
         os.path.dirname(os.path.realpath(__file__)),
         "hello.c")
 
-app = ec.register_resource("LinuxApplication")
+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")