I think instead of doing that, you should use `with_together` and a single
`when` statement that meets your needs

...
    line: "{{ item.1.line }}"
    regexp: "{{ item1.regexp }}"
...
  when: item.0.stat.exists
  with_together:
    - "{{ directories.results }}"
    -
      - { line: '-w /home/GOMER/Scripts -p w -k copperfield', regexp:
'.*GOMER.*Scripts.*' }
      - { line: '-w /home/PYLE/Scripts -p w -k copperfield', regexp:
'.*PYLE*Scripts.*' }

On Thu, Feb 22, 2018 at 4:28 PM, John Harmon <jharmon.ansi...@gmail.com>
wrote:

> For reference, this is a continuation of: https://groups.google.com/
> forum/#!topic/ansible-project/XhU9iPXjjcw
>
> Can you use multiple when statements in a loop? or is there a different
> way to approach this without having to write out a task for each item?
> Take the following for example.  I know the syntax is wrong, but it gives
> you a better idea of what I mean.
>
>     - name: Insert audit rules
>       lineinfile:
>         path: "/etc/audit/audit.rules"
>         line: "{{ item.line }}"
>         regexp: "{{ item.regexp }}"
>         state: present
>         insertafter: EOF
>       notify: Restart auditd
>       with_items:
>         - { line: '-w /home/GOMER/Scripts -p w -k copperfield', regexp:
> '.*GOMER.*Scripts.*' }
>           when: directories.results.0.stat.exists
>         - { line: '-w /home/PYLE/Scripts -p w -k copperfield', regexp:
> '.*PYLE*Scripts.*' }
>           when: directories.results.1.stat.exists
>
>
> --
> 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/d5c1708b-13f8-4dd0-858c-dfacd40cdc2a%40googlegroups.
> com
> <https://groups.google.com/d/msgid/ansible-project/d5c1708b-13f8-4dd0-858c-dfacd40cdc2a%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Matt Martz
@sivel
sivel.net

-- 
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/CAD8N0v_M6PStKFMBnPNfYOJ1i3NGrdJM6x0eRZZdRoe3uBeDtg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to