1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Use correct variable for run_once regardless of batch example (#57077)

Changes example to `when: inventory_hostname == ansible_play_hosts_all[0]` to really run run_once regardless of serial.
This commit is contained in:
Remon van de Kamp 2019-05-29 19:24:13 +02:00 committed by Alicia Cozine
parent 39945b8570
commit dea9644d21

View file

@ -273,7 +273,7 @@ As always with delegation, the action will be executed on the delegated host, bu
.. note::
When used together with "serial", tasks marked as "run_once" will be run on one host in *each* serial batch.
If it's crucial that the task is run only once regardless of "serial" mode, use
:code:`when: inventory_hostname == ansible_play_hosts[0]` construct.
:code:`when: inventory_hostname == ansible_play_hosts_all[0]` construct.
.. note::
Any conditional (i.e `when:`) will use the variables of the 'first host' to decide if the task runs or not, no other hosts will be tested.