diff options
author | NitrogenPointBlue <110332643+NitrogenPointBlue@users.noreply.github.com> | 2022-08-30 17:05:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 17:05:27 +0200 |
commit | 38c3b5e8f1cd6898b8dfe54f1849c8e424b5dd49 (patch) | |
tree | b1dd6e3fbb88333167d3485a9e6e171a709b7ccc | |
parent | until is also implicit (#78632) (diff) | |
download | ansible-38c3b5e8f1cd6898b8dfe54f1849c8e424b5dd49.tar.xz ansible-38c3b5e8f1cd6898b8dfe54f1849c8e424b5dd49.zip |
Fix typos in stat module examples (#78651)
-rw-r--r-- | lib/ansible/modules/stat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/stat.py b/lib/ansible/modules/stat.py index ff0f6712a9..918b588ffd 100644 --- a/lib/ansible/modules/stat.py +++ b/lib/ansible/modules/stat.py @@ -129,12 +129,12 @@ EXAMPLES = r''' msg: "Path exists and is a directory" when: p.stat.isdir is defined and p.stat.isdir -- name: Don not do checksum +- name: Do not calculate the checksum ansible.builtin.stat: path: /path/to/myhugefile get_checksum: no -- name: Use sha256 to calculate checksum +- name: Use sha256 to calculate the checksum ansible.builtin.stat: path: /path/to/something checksum_algorithm: sha256 |