diff options
-rw-r--r-- | rumba/testbeds/emulab.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rumba/testbeds/emulab.py b/rumba/testbeds/emulab.py index 735bf3a..b7c0c51 100644 --- a/rumba/testbeds/emulab.py +++ b/rumba/testbeds/emulab.py @@ -200,7 +200,7 @@ class EmulabTestbed(Testbed): @param links: holds the links in the experiment ''' - node_full_name = full_name(self, nodes[0].name) + node_full_name = self.full_name(nodes[0].name) cmd = 'cat /var/emulab/boot/topomap' topomap = ssh.execute_command(self, node_full_name, cmd) # Almost as ugly as yo momma @@ -223,7 +223,7 @@ class EmulabTestbed(Testbed): for node in nodes: cmd = 'cat /var/emulab/boot/ifmap' - node_full_name = full_name(self, node.name) + node_full_name = self.full_name(node.name) output = ssh.execute_command(self, node_full_name, cmd) output = re.split('\\\\n', output) for item in output: @@ -241,4 +241,4 @@ class EmulabTestbed(Testbed): self._create_experiment(nodes, links) self.swap_exp_in() self.wait_until_nodes_up() - es.complete_experiment_graph(nodes, links) + self.complete_experiment_graph(nodes, links) |