Ver código fonte

Merge pull request #41 from salt-formulas/pr/fix_minion_proxy_device

fix minion proxy, if devices not defined
pull/44/head
Aleš Komárek 7 anos atrás
pai
commit
4ec591cf9b
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      salt/minion/proxy.sls

+ 2
- 2
salt/minion/proxy.sls Ver arquivo

@@ -2,7 +2,7 @@

{%- set napalm = false %}

{%- for proxy_name, proxy_device in proxy.device.iteritems() %}
{%- for proxy_name, proxy_device in proxy.get('device', {}).iteritems() %}

{%- if proxy_device.engine == 'napalm' %}

@@ -39,7 +39,7 @@ napalm:

{%- endif %}

{%- for proxy_name, proxy_device in proxy.device.iteritems() %}
{%- for proxy_name, proxy_device in proxy.get('device', {}).iteritems() %}

salt_proxy_{{ proxy_name }}_service:
service.running:

Carregando…
Cancelar
Salvar