From d75418c2884e704cad16f4a354de973cb9208cc8 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sun, 6 May 2018 11:01:26 +0200 Subject: 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. --- rumba/testbeds/jfed.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3