mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed documentation for host patterns separators
This commit is contained in:
parent
13bf62d0e6
commit
3c3aff09c9
1 changed files with 5 additions and 2 deletions
|
@ -39,7 +39,7 @@ This means the host may be in either one group or the other::
|
|||
|
||||
You can exclude groups as well, for instance, all machines must be in the group webservers but not in the group phoenix::
|
||||
|
||||
webservers:!phoenix
|
||||
webservers,!phoenix
|
||||
|
||||
You can also specify the intersection of two groups. This would mean the hosts must be in the group webservers and
|
||||
the host must also be in the group staging::
|
||||
|
@ -48,7 +48,7 @@ the host must also be in the group staging::
|
|||
|
||||
You can do combinations::
|
||||
|
||||
webservers:dbservers:&staging:!phoenix
|
||||
webservers,dbservers,&staging,!phoenix
|
||||
|
||||
The above configuration means "all machines in the groups 'webservers' and 'dbservers' are to be managed if they are in
|
||||
the group 'staging' also, but the machines are not to be managed if they are in the group 'phoenix' ... whew!
|
||||
|
@ -97,6 +97,9 @@ And if you want to read the list of hosts from a file, prefix the file name with
|
|||
|
||||
Easy enough. See :doc:`intro_adhoc` and then :doc:`playbooks` for how to apply this knowledge.
|
||||
|
||||
.. note:: With the exception of version 1.9, you can use ',' instead of ':' as a host list separator. The ',' is prefered specially when dealing with ranges and ipv6.
|
||||
.. note:: As of 2.0 the ';' is deprecated as a host list separator.
|
||||
|
||||
.. seealso::
|
||||
|
||||
:doc:`intro_adhoc`
|
||||
|
|
Loading…
Reference in a new issue