Skip to content

Commit

Permalink
Merge pull request #277 from Furlot/patch-1
Browse files Browse the repository at this point in the history
Add http proxy support for minion
  • Loading branch information
aboe76 authored Jan 22, 2017
2 parents 2e79258 + 45e686b commit c685ca7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions salt/files/minion.d/f_defaults.conf
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,32 @@ master:
{{ get_config('master', 'salt') }}
{%- endif %}

# Set http proxy information for the minion when doing requests
{% if 'proxy_host' in cfg_minion -%}
{%- do default_keys.append('proxy_host') %}
proxy_host: {{ cfg_minion['proxy_host'] }}
{% else -%}
#proxy_host:
{%- endif %}
{% if 'proxy_port' in cfg_minion -%}
{%- do default_keys.append('proxy_port') %}
proxy_port: {{ cfg_minion['proxy_port'] }}
{% else -%}
#proxy_port:
{%- endif %}
{% if 'proxy_username' in cfg_minion -%}
{%- do default_keys.append('proxy_username') %}
proxy_username: {{ cfg_minion['proxy_username'] }}
{% else -%}
#proxy_username:
{%- endif %}
{% if 'proxy_password' in cfg_minion -%}
{%- do default_keys.append('proxy_password') %}
proxy_password: {{ cfg_minion['proxy_password'] }}
{% else -%}
#proxy_password:
{%- endif %}

# If multiple masters are specified in the 'master' setting, the default behavior
# is to always try to connect to them in the order they are listed. If random_master is
# set to True, the order will be randomized instead. This can be helpful in distributing
Expand Down

0 comments on commit c685ca7

Please sign in to comment.