X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=doc%2Fuser_manual%2Ffaq.tex;fp=doc%2Fuser_manual%2Ffaq.tex;h=5b345ed8675f1268ffb1d941a9253827dad8a377;hb=d50ba1a08e541ded7a8b322493ebb1d0cc59c6ff;hp=38cd6ce282af9607d48173866968ee5e7f1b6e90;hpb=4762aa96c7f41a86d919db6dac0feca2c6ca8e16;p=nepi.git diff --git a/doc/user_manual/faq.tex b/doc/user_manual/faq.tex index 38cd6ce2..5b345ed8 100644 --- a/doc/user_manual/faq.tex +++ b/doc/user_manual/faq.tex @@ -107,12 +107,12 @@ hostname = # Host that can be accessed with an SSH account username = # SSH user account on host ssh_key = # Path to SSH public key file to access host -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) -app = ec.register_resource("LinuxApplication") +app = ec.register_resource("linux::Application") ec.set(app, "command", "ping -c3 nepi.inria.fr") ec.register_connection(app, node)