minor language nits picked

This commit is contained in:
Samveen Gulati 2020-12-15 10:43:04 +05:30
parent efdd81ea61
commit 2c398aefc2

View File

@ -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`.
```
---