summaryrefslogtreecommitdiff
path: root/docsite/rst/intro_patterns.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docsite/rst/intro_patterns.rst')
-rw-r--r--docsite/rst/intro_patterns.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docsite/rst/intro_patterns.rst b/docsite/rst/intro_patterns.rst
index 6f76820e6a..970ec58dc0 100644
--- a/docsite/rst/intro_patterns.rst
+++ b/docsite/rst/intro_patterns.rst
@@ -27,7 +27,7 @@ The following patterns are equivalent and target all hosts in the inventory::
It is also possible to address a specific host or set of hosts by name::
one.example.com
- one.example.com, two.example.com
+ one.example.com:two.example.com
192.168.1.50
192.168.1.*
@@ -35,20 +35,20 @@ The following patterns address one or more groups. Groups separated by a comma
This means the host may be in either one group or the other::
webservers
- webservers,dbservers
+ webservers:dbservers
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::
- webservers,&staging
+ webservers:&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!
@@ -56,7 +56,7 @@ the group 'staging' also, but the machines are not to be managed if they are in
You can also use variables if you want to pass some group specifiers via the "-e" argument to ansible-playbook, but this
is uncommonly used::
- webservers,!{{excluded}},&{{required}}
+ webservers:!{{excluded}}:&{{required}}
You also don't have to manage by strictly defined groups. Individual host names, IPs and groups, can also be referenced using
wildcards::
@@ -66,7 +66,7 @@ wildcards::
It's also ok to mix wildcard patterns and groups at the same time::
- one*.com,dbservers
+ one*.com:dbservers
You can select a host or subset of hosts from a group by their position. For example, given the following group::