summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2015-11-09 08:54:51 -0800
committerToshio Kuratomi <a.badger@gmail.com>2015-11-09 08:54:51 -0800
commit317e9081653dbbba0d76c9c0e8d23658109030cf (patch)
tree440811311c2f66a9e59e27c0a5b329424e3f6a80
parent240acb19249c855324dab8736d13c8cf51e539d5 (diff)
parenta8e1ec585d5d9ee8a3f7633dc689ecfd4383ad3c (diff)
downloadansible-317e9081653dbbba0d76c9c0e8d23658109030cf.tar.gz
Merge pull request #13065 from tima/patch-2
Consistent inventory pattern delimiter in docs
-rw-r--r--docsite/rst/intro_patterns.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docsite/rst/intro_patterns.rst b/docsite/rst/intro_patterns.rst
index 669ddd802d..a97aed42d4 100644
--- a/docsite/rst/intro_patterns.rst
+++ b/docsite/rst/intro_patterns.rst
@@ -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!