Explorar el Código

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 hace 6 años
padre
commit
8188337922
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      iptables/rules.sls

+ 1
- 1
iptables/rules.sls Ver fichero

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

Cargando…
Cancelar
Guardar