Kaynağa Gözat

Python2->3 Iteritems Fix

chain for loop was using iteritems which isn't available in Python3
anymore and was throwing an exception when run with Salt on Python3.
master
Nate Bohman 6 yıl önce
ebeveyn
işleme
8188337922
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      iptables/rules.sls

+ 1
- 1
iptables/rules.sls Dosyayı Görüntüle

@@ -2,7 +2,7 @@
{%- if grains.get('virtual_subtype', None) not in ['Docker', 'LXC'] %}

{%- set chains = service.get('chain', {}).keys() %}
{%- for chain_name, chain in service.get('chain', {}).iteritems() %}
{%- for chain_name, chain in service.get('chain', {}).items() %}

{%- set tables = [] %}
{%- for rule in chain.get('rules', []) %}

Yükleniyor…
İptal
Kaydet