diff options
author | Brian Coca <bcoca@users.noreply.github.com> | 2019-03-11 20:12:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 20:12:14 +0100 |
commit | 9b6721909665813235f2e16615a77459d0853478 (patch) | |
tree | 61cbc047b066809595f457bb29e2dba1aac18ead /docs | |
parent | remove some instances of `state: installed` (#53537) (diff) | |
download | ansible-9b6721909665813235f2e16615a77459d0853478.tar.xz ansible-9b6721909665813235f2e16615a77459d0853478.zip |
Fine tune sanity (#53544)
* modify regex to use implicit charsets this should solve issues in py3 and unicode names
* fix issue with subgroups in yaml inventory
* clarify deprecation message
* separated per name warning from deprecation
* move noise to verbosity, simplify warnings
* fix docs to reflect actual 'good' practice
* change toggle to choice list to give users more options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/user_guide/playbooks_best_practices.rst | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/docsite/rst/user_guide/playbooks_best_practices.rst b/docs/docsite/rst/user_guide/playbooks_best_practices.rst index b6146c7a2a..1d595b3d3b 100644 --- a/docs/docsite/rst/user_guide/playbooks_best_practices.rst +++ b/docs/docsite/rst/user_guide/playbooks_best_practices.rst @@ -140,40 +140,40 @@ It is suggested that you define groups based on purpose of the host (roles) and # file: production - [atlanta-webservers] + [atlanta_webservers] www-atl-1.example.com www-atl-2.example.com - [boston-webservers] + [boston_webservers] www-bos-1.example.com www-bos-2.example.com - [atlanta-dbservers] + [atlanta_dbservers] db-atl-1.example.com db-atl-2.example.com - [boston-dbservers] + [boston_dbservers] db-bos-1.example.com # webservers in all geos [webservers:children] - atlanta-webservers - boston-webservers + atlanta_webservers + boston_webservers # dbservers in all geos [dbservers:children] - atlanta-dbservers - boston-dbservers + atlanta_dbservers + boston_dbservers # everything in the atlanta geo [atlanta:children] - atlanta-webservers - atlanta-dbservers + atlanta_webservers + atlanta_dbservers # everything in the boston geo [boston:children] - boston-webservers - boston-dbservers + boston_webservers + boston_dbservers .. _groups_and_hosts: |