From f85f86ccddcb5f189c37d7b461e4b0b15f452863 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Mon, 8 Mar 2021 17:25:23 -0500 Subject: [PATCH] [fix] Check for empty proxy string everywhere --- salt/idstools/init.sls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/idstools/init.sls b/salt/idstools/init.sls index f65f93a7a..eaf91bd58 100644 --- a/salt/idstools/init.sls +++ b/salt/idstools/init.sls @@ -72,7 +72,7 @@ so-idstools: - image: {{ MANAGER }}:5000/{{ IMAGEREPO }}/so-idstools:{{ VERSION }} - hostname: so-idstools - user: socore - {% if proxy is not none %} + {% if proxy != '' and proxy is not none %} - environment: - http_proxy={{ proxy }} - https_proxy={{ proxy }}