diff options
author | Dovry <beepboopvm@gmail.com> | 2020-01-20 12:36:17 +0100 |
---|---|---|
committer | Abhijeet Kasurde <akasurde@redhat.com> | 2020-01-20 17:06:17 +0530 |
commit | f9bc53e23df8542ce44af49aa543ce87e7fc0aa7 (patch) | |
tree | 20371155aaccf29de93b99b22795cd2410c0aca1 /lib | |
parent | b620134f9c36a05da4efc52c58224e2a62376507 (diff) | |
download | ansible-f9bc53e23df8542ce44af49aa543ce87e7fc0aa7.tar.gz |
fix closing quotation mark in copy module(#66619)
fix from "ntp.conf to "ntp.conf" in copy module documentation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ansible/modules/files/copy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/files/copy.py b/lib/ansible/modules/files/copy.py index 21aa74c937..e69b9de41f 100644 --- a/lib/ansible/modules/files/copy.py +++ b/lib/ansible/modules/files/copy.py @@ -156,7 +156,7 @@ EXAMPLES = r''' group: foo mode: u+rw,g-wx,o-rwx -- name: Copy a new "ntp.conf file into place, backing up the original if it differs from the copied version +- name: Copy a new "ntp.conf" file into place, backing up the original if it differs from the copied version copy: src: /mine/ntp.conf dest: /etc/ntp.conf |