Skip to content
This repository has been archived by the owner on Apr 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #29 from Jakuje/patch-1
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
greg-hellings authored Sep 14, 2020
2 parents dbcdb42 + c484cfb commit 44ea79d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ file` test means that you do not have to provide all of the `vars/` files,
only the ones you need. For example, if every platform except Fedora uses
`srv_name` for the service name, you can define `myrole_service: srv_name` in
`vars/main.yml` then define `myrole_service: srv2_name` in `vars/Fedora.yml`.
In cases where this would lead to duplicate vars files for similiar
distibutions (e.g. CentOS 7 and RHEL 7), use symlinks to avoid the
In cases where this would lead to duplicate vars files for similar
distributions (e.g. CentOS 7 and RHEL 7), use symlinks to avoid the
duplication.

**NOTE**: With this setup, files can be loaded twice. For example, on Fedora,
Expand Down Expand Up @@ -366,7 +366,7 @@ exists for each provider supported, or use an explicit, absolute path using
documenting an optional variable with its default value.
* As a result of being able to pass basic YAML lint, avoid the use of `True` and `False` for boolean values
in playbooks. These values are sometimes used because they are the words Python uses. However, they are
improper YAML and will be treated as either strigns or as booleans but generating a warning depending on
improper YAML and will be treated as either strings or as booleans but generating a warning depending on
the particular YAML implementation.
* Do not use the Ansible-specific `yes` and `no` as boolean values in YAML as these are completely
custom extensions used by Ansible and are not part of the YAML spec.
Expand Down Expand Up @@ -400,7 +400,7 @@ and [development](https://docs.ansible.com/ansible/latest/dev_guide/index.html).
exists. If not, see the [section](#check-mode-and-idempotency-issues) about idempotency and check mode and
make sure that you support them properly (your task will likely need options such as `changed_when:`
and maybe `check_mode:` ). Anytime `command` or `shell` modules are used, a comment in the code with
justificiation would help with future maintenance.
justification would help with future maintenance.
* Beware of bare variables (expressions consisting of just one variable reference without any
operator) in `when`, their behavior is unexpected
[more_info](https://github.com/ansible/ansible/issues/39414).
Expand Down

0 comments on commit 44ea79d

Please sign in to comment.