From 0d332a80cf731e5927c81c9f6929a8b83d43cddd Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Mon, 5 Feb 2018 10:45:46 -0800 Subject: Add proxy support In some cases the XCI development environment can be located behind a corporate proxy resulting in a additional layer to consider to configure. These changes pretend to include proxy support for all linux distros in all the posible flavors. Change-Id: Iab469268809ac471d09e244bb3ccd83de1a41b88 Signed-off-by: Victor Morales --- xci/playbooks/roles/bootstrap-host/tasks/time.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xci/playbooks/roles/bootstrap-host') diff --git a/xci/playbooks/roles/bootstrap-host/tasks/time.yml b/xci/playbooks/roles/bootstrap-host/tasks/time.yml index 8f94d33f..4b3bf95a 100644 --- a/xci/playbooks/roles/bootstrap-host/tasks/time.yml +++ b/xci/playbooks/roles/bootstrap-host/tasks/time.yml @@ -21,3 +21,7 @@ until: chrony_got_time.rc == 0 retries: 5 delay: 5 + environment: + http_proxy: "{{ lookup('env','http_proxy') }}" + https_proxy: "{{ lookup('env','https_proxy') }}" + no_proxy: "{{ lookup('env','no_proxy') }}" -- cgit 1.2.3-korg