diff options
-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 0bb8cd3..924da8f 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: |