From 7c02fbc57439f5ab850b3f605df84e549174b11b Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Thu, 28 Jun 2018 11:49:55 +0200 Subject: testbeds: Abstract away use of http proxy server Certain testbeds use a proxy to access the outside world. Due to recent changes this was not working anymore. This takes a different approach to re-enable this. It simply adds the lines to /etc/profile after swap-in so that the proxy is added to every shell upon execution. --- rumba/elements/experimentation.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'rumba/elements/experimentation.py') diff --git a/rumba/elements/experimentation.py b/rumba/elements/experimentation.py index d0910a6..5a86b6f 100644 --- a/rumba/elements/experimentation.py +++ b/rumba/elements/experimentation.py @@ -47,14 +47,12 @@ class Testbed(object): username, password, proj_name, - http_proxy=None, system_logs=None): """ :param exp_name: The experiment name. :param username: The username. :param password: The password. :param proj_name: The project name. - :param http_proxy: HTTP proxy used by the testbed. :param system_logs: Location of the system logs of images of the testbed. """ @@ -62,7 +60,6 @@ class Testbed(object): self.password = password self.proj_name = proj_name self.exp_name = exp_name - self.http_proxy = http_proxy self.flags = {'no_vlan_offload': False} self.executor = None if system_logs is None: -- cgit v1.2.3