So, I want to add two lines to each of two files.  Looking to see if 
lineinfile could add multiple lines, I found a post that seemed to indicate 
it could not.

1) Is it possible to make lineinfile add multiple lines?

2) If not, is there a way to do something like:

  - name: Lock accounts after 3 unsuccessful logon attempts
    lineinfile: dest=/etc/pam.d/{{item1}}-auth-ac
                regexp='^auth\ [default=die]\ pam_faillock\.so\ authfail\ 
deny=3\ unlock_time=604800\ fail_interval=900'
                insertafter='^auth.*pam_unix\.so.*'               
 line='$item2'
    with_items2:
    - 'auth [default=die] pam_faillock.so authfail deny=3 
unlock_time=604800 fail_interval=900'
    - 'auth required pam_faillock.so authsucc deny=3 unlock_time=604800 
fail_interval=900'
    with_items1:
      - system
      - password

-- 
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/55b1d9fd-a695-4333-af7f-55062d073d3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to