ソースを参照

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年前
コミット
8188337922
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      iptables/rules.sls

+ 1
- 1
iptables/rules.sls ファイルの表示

@@ -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', []) %}

読み込み中…
キャンセル
保存