ansible 1.6.10

This stanza:

- name: Forward LDAP ports
  lineinfile: dest=/etc/sysconfig/iptables
              insertbefore=BOF
              line="{{item}}"
  with_items:
    - "COMMIT"
    - "-A OUTPUT -d 127.0.0.1/32 -p tcp -m tcp --dport 389 -j REDIRECT 
--to-ports 10389"
    - "-A OUTPUT -d 127.0.0.1/32 -p tcp -m tcp --dport 636 -j REDIRECT 
--to-ports 10636"
    - ":OUTPUT ACCEPT [0:0]"
    - ":POSTROUTING ACCEPT [0:0]"
    - ":PREROUTING ACCEPT [0:0]"
    - "*nat"

Results in:

:PREROUTING ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
-A OUTPUT -d 127.0.0.1/32 -p tcp -m tcp --dport 636 -j REDIRECT --to-ports 
10636
-A OUTPUT -d 127.0.0.1/32 -p tcp -m tcp --dport 389 -j REDIRECT --to-ports 
10389
*nat
<REST OF FILE>

Whiskey Tango Foxtrot???  

Why were two lines skipped, including the most innocuous line of the bunch? 
 Why were they not done in order?

It would be really nice to see an ansible module to insert the contents of 
a file rather than just a line.

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-project+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/82d7bd94-6a04-42c4-ae34-799fb501ca52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to