From e0a550efea05306ada8c258b0c1c1c9a48fe6534 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 20 Aug 2020 17:46:40 +0300 Subject: [PATCH] overview_architecture.rst: fix playbook example (#71303) (#71367) (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 c62d33cd06c..587e1963400 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: