Преглед изворни кода

enable put salt minion proxy host to empty string

When proxy parameter was defined and host is empty string, salt is complaining with warning. With this patch when host is empty parameters are not used.

Change-Id: I11150e5f141182d5934564611d6c39b2b379b5e9
pull/73/head
Ondrej Smola пре 6 година
родитељ
комит
44358fe688
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      salt/files/minion.conf

+ 1
- 1
salt/files/minion.conf Прегледај датотеку

@@ -69,7 +69,7 @@ mine_interval: {{ minion.mine.get('interval', 30) }}
log_level: {{ minion.log.get('level', 'error') }}
state_output: {{ minion.log.get('state_output', 'changes') }}

{%- if minion.proxy is defined %}
{%- if minion.get('proxy', {}).get('host', "") != "" %}
proxy_host: {{ minion.proxy.host }}
proxy_port: {{ minion.proxy.port }}
{%- endif %}

Loading…
Откажи
Сачувај