Procházet zdrojové kódy

Use iteritems() instead of items().

Signed-off-by: René Jochum <rene@jochums.at>
tags/v0.41.0
René Jochum před 9 roky
rodič
revize
a013b79027
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      openssh/auth.sls

+ 1
- 1
openssh/auth.sls Zobrazit soubor

@@ -3,7 +3,7 @@ include:
{%- from "openssh/map.jinja" import openssh with context -%}
{%- set openssh_pillar = pillar.get('openssh', {}) -%}
{%- set auth = openssh_pillar.get('auth', {}) -%}
{%- for user,keys in auth.items() -%}
{%- for user,keys in auth.iteritems() -%}
{%- for key in keys -%}
{% if 'present' in key and key['present'] %}
{{ key['name'] }}:

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