From 18792f4e48e90e9a260a24005996860722f482b7 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 12 Feb 2015 23:57:39 -0500 Subject: [PATCH] added note to add_hosts about loop bypass --- inventory/add_host.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/inventory/add_host.py b/inventory/add_host.py index 4fd4e1eb15f..0f1b84abcd2 100644 --- a/inventory/add_host.py +++ b/inventory/add_host.py @@ -5,7 +5,7 @@ DOCUMENTATION = ''' module: add_host short_description: add a host (and alternatively a group) to the ansible-playbook in-memory inventory description: - - Use variables to create new hosts and groups in inventory for use in later plays of the same playbook. + - Use variables to create new hosts and groups in inventory for use in later plays of the same playbook. Takes variables so you can define the new hosts more fully. version_added: "0.9" options: @@ -13,12 +13,15 @@ options: aliases: [ 'hostname', 'host' ] description: - The hostname/ip of the host to add to the inventory, can include a colon and a port number. - required: true + required: true groups: aliases: [ 'groupname', 'group' ] description: - The groups to add the hostname to, comma separated. required: false +notes: + - 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. author: Seth Vidal '''