> Weirdly, when I try to create an in-memory host group using when and
> add_host the task only gets executed one time (on a skipped host). I
> don't have run_once on this task so I'm not sure why all my nodes aren't
> executing it. Any ideas?

add_host is implicitly run_once; there's a note about it at the bottom of
http://docs.ansible.com/ansible/latest/add_host_module.html saying "This
module bypasses the play host loop and only runs once for all the hosts in
the play, if you need it to iterate use a with_ directive." Something like

  - add_host:
      groups: cool_new_group
      name: "{{ item }}"
    changed_when: False
    with_items: "{{ play_hosts }}"

might do what you need, depending what you need. :^)

                                      -Josh (j...@care.com)

(apologies for the automatic corporate disclaimer that follows)

This email is intended for the person(s) to whom it is addressed and may 
contain information that is PRIVILEGED or CONFIDENTIAL. Any unauthorized use, 
distribution, copying, or disclosure by any person other than the addressee(s) 
is strictly prohibited. If you have received this email in error, please notify 
the sender immediately by return email and delete the message and any 
attachments from your system.

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

Reply via email to