diff options
author | Sander Vrijders <[email protected]> | 2017-02-03 14:25:52 +0100 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2017-02-03 14:25:52 +0100 |
commit | a79578988cb2bc7e08a516aca93a3816d996072d (patch) | |
tree | 7a1cff1b8bf2f572752502d1a9efe46639d40e81 /emulab_support.py | |
parent | 2a085b29e2754500e87cbb1a90e89301671eabe8 (diff) | |
download | rumba-a79578988cb2bc7e08a516aca93a3816d996072d.tar.gz rumba-a79578988cb2bc7e08a516aca93a3816d996072d.zip |
rhumba: Remove experiment name and add more info
This removes the experiment name in the different experiments. It also
adds some more info to the Node class, such as the full URL of the
node after swap-in.
Diffstat (limited to 'emulab_support.py')
-rw-r--r-- | emulab_support.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulab_support.py b/emulab_support.py index 6fe0055..db779a9 100644 --- a/emulab_support.py +++ b/emulab_support.py @@ -297,6 +297,7 @@ def complete_experiment_graph(testbed, nodes, p2plinks): elif link.node_b.name == node.name and \ link.int_b.ip == item[1]: link.int_b.name = item[0] + node.full_name = full_name(testbed, node.name) def setup_vlan(testbed, node_name, vlan_id, int_name): ''' |