Allow add_host to add hosts to multiple groups, groups is now an alias for groupname.

reviewable/pr18780/r1
Michael DeHaan 12 years ago
parent a1458146a4
commit 9c93967b38

@ -13,14 +13,15 @@ options:
description: description:
- The hostname/ip of the host to add to the inventory - The hostname/ip of the host to add to the inventory
required: true required: true
groupname: groups:
aliases: [ 'groupname' ]
description: description:
- The groupname to add the hostname to. - The groups to add the hostname to, comma seperated.
required: false required: false
author: Seth Vidal author: Seth Vidal
examples: examples:
- description: add host to group 'just_created' - description: add host to group 'just_created' with variable foo=42
code: add_host hostname=${ip_from_ec2create} groupname=just_created code: add_host hostname=${ip_from_ec2create} groups=just_created foo=42
- description add a host with a non-standard port local to your machines - description: add a host with a non-standard port local to your machines
code: add_host hostname='${new_ip}:${new_port}' ansible_ssh_port='${new_port}' ansible_ssh_host='${new_ip}' groupname=cloud_hosts code: add_host hostname='${new_ip}:${new_port}'
''' '''

Loading…
Cancel
Save