From f78f6fca8f95318ebcdb64b476964c3dd6146f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Fern=C3=A1ndez=20Rodr=C3=ADguez?= Date: Sat, 28 Sep 2024 14:49:08 +0200 Subject: [PATCH] [foreman] [foreman_proxy] Add ALL_PROXY and NO_PROXY to collected env_vars --- sos/report/plugins/foreman.py | 2 +- sos/report/plugins/foreman_proxy.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sos/report/plugins/foreman.py b/sos/report/plugins/foreman.py index a034854c68..c18cac9ddf 100644 --- a/sos/report/plugins/foreman.py +++ b/sos/report/plugins/foreman.py @@ -300,7 +300,7 @@ def collect_proxies(self): self.add_env_var([ 'HTTP_PROXY', 'HTTPS_PROXY', - 'NO_PROXY', + 'NO_PROXY', 'ALL_PROXY', ]) diff --git a/sos/report/plugins/foreman_proxy.py b/sos/report/plugins/foreman_proxy.py index 81e9836bd9..e958e25946 100644 --- a/sos/report/plugins/foreman_proxy.py +++ b/sos/report/plugins/foreman_proxy.py @@ -45,7 +45,7 @@ def setup(self): self.add_env_var([ 'HTTP_PROXY', 'HTTPS_PROXY', - 'NO_PROXY', + 'NO_PROXY', 'ALL_PROXY', ])