소스 검색

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 년 전
부모
커밋
4ec591cf9b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      salt/minion/proxy.sls

+ 2
- 2
salt/minion/proxy.sls 파일 보기

@@ -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:

Loading…
취소
저장