From: Tony Mack Date: Thu, 31 Jan 2008 20:19:33 +0000 (+0000) Subject: add default value for root_key_path param X-Git-Tag: 2008-02-11-last-vmware-support~35 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7a50c4f53b71a1d3913c8be78f0a28019263908d;p=tests.git add default value for root_key_path param --- diff --git a/qaapi/qa/tests/node_remote_call.py b/qaapi/qa/tests/node_remote_call.py index 4a53b12..db27e16 100755 --- a/qaapi/qa/tests/node_remote_call.py +++ b/qaapi/qa/tests/node_remote_call.py @@ -9,7 +9,7 @@ class node_remote_call(Test): issue a command. """ - def call(self, root_key_path, hostname, command): + def call(self, hostname, command, root_key_path = "/etc/planetlab/root_ssh_key.rsa"): if not os.path.isfile(root_key_path): raise Exception, "no such private key file %(root_key_path)s" % locals()