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

[PR #307/677f5122 backport][stable-2.14] playbooks_intro.rst: change example #318

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/docsite/rst/playbook_guide/playbooks_intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down