summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts/library
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-01-26 09:17:31 -0500
committerGitHub <noreply@github.com>2017-01-26 09:17:31 -0500
commit824e3a669e4683c3baf94d8f9eee168bc68afcb1 (patch)
tree67f104050de377ed852795ac1dc4b856de582f52 /roles/openshift_facts/library
parent7f1f05d90b4f6032629cf1a08e8f4139093f0f0b (diff)
parentcd2690c5fd83719c5abba0220c58acc584210a7f (diff)
downloadopenshift-824e3a669e4683c3baf94d8f9eee168bc68afcb1.tar.gz
openshift-824e3a669e4683c3baf94d8f9eee168bc68afcb1.tar.bz2
openshift-824e3a669e4683c3baf94d8f9eee168bc68afcb1.tar.xz
openshift-824e3a669e4683c3baf94d8f9eee168bc68afcb1.zip
Merge pull request #3182 from abutcher/no-proxy-list
Comma separate no_proxy host list in openshift_facts
Diffstat (limited to 'roles/openshift_facts/library')
-rwxr-xr-xroles/openshift_facts/library/openshift_facts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py
index 78886dcea..5ca8879b3 100755
--- a/roles/openshift_facts/library/openshift_facts.py
+++ b/roles/openshift_facts/library/openshift_facts.py
@@ -1641,7 +1641,7 @@ def set_proxy_facts(facts):
# We always add local dns domain and ourselves no matter what
common['no_proxy'].append('.' + common['dns_domain'])
common['no_proxy'].append(common['hostname'])
- common['no_proxy'] = sort_unique(common['no_proxy'])
+ common['no_proxy'] = ','.join(sort_unique(common['no_proxy']))
facts['common'] = common
return facts