From 6741f3b6135039844a074f67294bef463b07c2af Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Mon, 17 Aug 2020 20:44:05 +0300 Subject: [PATCH] overview_architecture.rst: fix playbook example (#71303) (cherry picked from commit a496b89d6f0f7875acfd46faa7e68054b68cc8f2) --- .../rst/dev_guide/overview_architecture.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docsite/rst/dev_guide/overview_architecture.rst b/docs/docsite/rst/dev_guide/overview_architecture.rst index c62d33cd06c854..587e1963400eda 100644 --- a/docs/docsite/rst/dev_guide/overview_architecture.rst +++ b/docs/docsite/rst/dev_guide/overview_architecture.rst @@ -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: