diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-05-06 11:01:26 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2018-05-08 08:16:01 +0000 |
commit | d75418c2884e704cad16f4a354de973cb9208cc8 (patch) | |
tree | a51c4433b0a3d4288a337d32db9a08cba849b67b | |
parent | 846f0a7eb5e6a7e47731247aa58686475dcde9b2 (diff) | |
download | rumba-d75418c2884e704cad16f4a354de973cb9208cc8.tar.gz rumba-d75418c2884e704cad16f4a354de973cb9208cc8.zip |
testbeds: Add support for Instageni
This adds support for some Instageni testbeds. Also fixes a bug where
putting an unknown authority would lead to an error saying there was
no authority specified.
-rw-r--r-- | rumba/testbeds/jfed.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rumba/testbeds/jfed.py b/rumba/testbeds/jfed.py index a651b63..e74e044 100644 --- a/rumba/testbeds/jfed.py +++ b/rumba/testbeds/jfed.py @@ -93,8 +93,11 @@ class Testbed(mod.Testbed): elif "wall" in authority: self.authority = "urn:publicid:IDN+" + authority + "+authority+cm" self.http_proxy="https://proxy.atlantis.ugent.be:8080" - elif "cloudlab" in authority: + elif "cloudlab" or "geniracks" in authority: self.authority = "urn:publicid:IDN+" + authority + "+authority+cm" + else: + logger.info("Authority may not be fully supported") + self.authority = "urn:publicid:IDN+" + authority + "+authority+am" if use_physical_machines is None: if "wall" in authority or "cloudlab" in authority: |