From 6397e68bfdbc5097a6351168cdb97d1b6b943bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Moser?= Date: Wed, 23 Aug 2017 07:49:32 +0200 Subject: [PATCH] doc: replace play_hosts with ansible_play_batch (#28526) --- docs/docsite/rst/playbooks_loops.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/playbooks_loops.rst b/docs/docsite/rst/playbooks_loops.rst index 4dec34bb93..82d0732fd0 100644 --- a/docs/docsite/rst/playbooks_loops.rst +++ b/docs/docsite/rst/playbooks_loops.rst @@ -699,7 +699,7 @@ Looping over the inventory `````````````````````````` If you wish to loop over the inventory, or just a subset of it, there is multiple ways. -One can use a regular ``with_items`` with the ``play_hosts`` or ``groups`` variables, like this:: +One can use a regular ``with_items`` with the ``ansible_play_batch`` or ``groups`` variables, like this:: # show all the hosts in the inventory - debug: @@ -711,7 +711,7 @@ One can use a regular ``with_items`` with the ``play_hosts`` or ``groups`` varia - debug: msg: "{{ item }}" with_items: - - "{{ play_hosts }}" + - "{{ ansible_play_batch }}" There is also a specific lookup plugin ``inventory_hostnames`` that can be used like this::