From: Thierry Parmentelat Date: Fri, 25 Jun 2010 09:53:09 +0000 (+0200) Subject: fetch_keys does not grab the root key anymore X-Git-Tag: tests-5.0-7~4 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=24985dd0fb853a672ec3d8c609c14a90f37d3dc8;p=tests.git fetch_keys does not grab the root key anymore --- diff --git a/system/TestNode.py b/system/TestNode.py index d1aa107..81a6014 100644 --- a/system/TestNode.py +++ b/system/TestNode.py @@ -215,8 +215,10 @@ class TestNode: def create_test_ssh(self): # get the plc's keys for entering the node vservername=self.test_plc.vservername - # assuming we've run testplc.fetch_keys() - key = "keys/%(vservername)s.rsa"%locals() +### # assuming we've run testplc.fetch_keys() +### key = "keys/%(vservername)s.rsa"%locals() + # fetch_keys doesn't grab the root key anymore + key = "keys/key1.rsa" return TestSsh(self.name(), buildname=self.buildname(), key=key) def check_hooks (self):