Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.10] overview_architecture.rst: fix playbook example (#71303) #71367

Merged
merged 1 commit into from Aug 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/docsite/rst/dev_guide/overview_architecture.rst
Expand Up @@ -66,15 +66,15 @@ Here's what a simple playbook looks like::

---
- hosts: webservers
serial: 5 # update 5 machines at a time
roles:
- common
- webapp
serial: 5 # update 5 machines at a time
roles:
- common
- webapp

- hosts: content_servers
roles:
- common
- content
roles:
- common
- content

.. _ansible_search_path:

Expand Down