From 22ba43a8cf348299cd4b92e34aa780bcf3099ed7 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Mon, 21 Aug 2023 17:28:50 +0200 Subject: [PATCH] playbooks_intro.rst: change example (#307) (cherry picked from commit 677f51223473b8eb509171fe351c38969e416ec1) --- docs/docsite/rst/playbook_guide/playbooks_intro.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/docsite/rst/playbook_guide/playbooks_intro.rst b/docs/docsite/rst/playbook_guide/playbooks_intro.rst index b41a449b2ab..6aa5a8117d7 100644 --- a/docs/docsite/rst/playbook_guide/playbooks_intro.rst +++ b/docs/docsite/rst/playbook_guide/playbooks_intro.rst @@ -51,6 +51,7 @@ In this example, the first play targets the web servers; the second play targets ansible.builtin.yum: name: httpd state: latest + - name: Write the apache config file ansible.builtin.template: src: /srv/httpd.j2 @@ -65,6 +66,7 @@ In this example, the first play targets the web servers; the second play targets ansible.builtin.yum: name: postgresql state: latest + - name: Ensure that postgresql is started ansible.builtin.service: name: postgresql