From 2c398aefc279a2147e198a3261540d1af1a3fa56 Mon Sep 17 00:00:00 2001 From: Samveen Gulati Date: Tue, 15 Dec 2020 10:43:04 +0530 Subject: [PATCH] minor language nits picked --- ansible/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/README.md b/ansible/README.md index f7d5f7a..9bb032e 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -70,7 +70,7 @@ role-* -> These playbooks call roles specifically for infrastructure tasks. ### Pre flight and post flight -At a minimum, there should be `pre_tasks` and `post_tasks` that can judge whether ansible has been can or has been run on a system. Some playbooks will not necessarily need this (eg if you're running an adhoc playbook to create a user). But operations done on a host should at least have these in the playbook, with an optional handlers include. +At a minimum, there should be `pre_tasks` and `post_tasks` that can judge whether ansible can or has been run on a system. Some playbooks will not necessarily need this (eg if you're running an adhoc playbook to create a user). But operations done on a host should at least have these in the playbook, with an optional `handlers:` include. ``` handlers: @@ -110,7 +110,7 @@ Ensure that you use relevant tags where necessary for your tasks. ### Roles -If you are using roles or collections, you will need to list them in `./roles/requirements.yml`. For example, we use the freeipa collection and a mysql role from geerlingguy. +If you are using roles or collections, you will need to list them in `./roles/requirements.yml`. For example, we use the `freeipa` collection and a `mysql` role from `geerlingguy`. ``` ---