Procházet zdrojové kódy

Merge pull request #6 from yottatsa/master

Fix empty array get
tags/2016.12
Aleš Komárek před 8 roky
rodič
revize
bd2a6e3139
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      salt/minion/cert.sls

+ 1
- 1
salt/minion/cert.sls Zobrazit soubor

@@ -69,7 +69,7 @@ salt_minion_cert_{{ cert_name }}_dirs:
- watch:
- x509: {{ cert_file }}

{%- for ca_path,ca_cert in salt['mine.get'](cert.host, 'x509.get_pem_entries')[cert.host].iteritems() %}
{%- for ca_path,ca_cert in salt['mine.get'](cert.host, 'x509.get_pem_entries').get(cert.host, {}).iteritems() %}

{%- if '/etc/pki/ca/'+cert.authority in ca_path %}


Načítá se…
Zrušit
Uložit