Tweak for loop syntax

This commit is contained in:
Kevin Fenzi 2014-01-01 20:20:12 +00:00
parent 4af3a2ec32
commit 72478b0264

View file

@ -62,8 +62,8 @@
# open up tcp ports
- name: poke holes in the firewall
action: command lokkit -p '{{ item }}:tcp'
with_items: "{{ tcp_ports }}"
with_items:
- "{{ tcp_ports }}"
handlers:
- include: "{{ handlers }}/restart_services.yml"