aboutsummaryrefslogtreecommitdiff
path: root/rumba/prototypes/rlite.py
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@ugent.be>2017-04-11 19:12:53 +0200
committerSander Vrijders <sander.vrijders@ugent.be>2017-04-11 19:12:53 +0200
commitf5f9fba3d6b657fd5daa31e4981c055a05c596e8 (patch)
treedef87ce8de8656f07cf9f79b209d794f5414b0c1 /rumba/prototypes/rlite.py
parent662c33bf7ce9ddf3bcc77f7d5f51c958d2b837ad (diff)
downloadrumba-f5f9fba3d6b657fd5daa31e4981c055a05c596e8.tar.gz
rumba-f5f9fba3d6b657fd5daa31e4981c055a05c596e8.zip
ssh_support: Pass SSHConfig instead of only hostname
Only the hostname was passed to the ssh_support component. This passes an object that can also hold the port number. It can be extended to take other things as well, such as a proxy.
Diffstat (limited to 'rumba/prototypes/rlite.py')
-rw-r--r--rumba/prototypes/rlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rumba/prototypes/rlite.py b/rumba/prototypes/rlite.py
index f4ff825..ed6db88 100644
--- a/rumba/prototypes/rlite.py
+++ b/rumba/prototypes/rlite.py
@@ -40,7 +40,7 @@ class Experiment(mod.Experiment):
cmds.append("sudo nohup rlite-uipcps -v DBG -k 0 -U -A &> uipcp.log &")
for node in self.nodes:
- ssh.execute_commands(self.testbed, node.full_name,
+ ssh.execute_commands(self.testbed, node.ssh_config,
cmds, time_out=None)
def run_prototype(self):