From f9bc53e23df8542ce44af49aa543ce87e7fc0aa7 Mon Sep 17 00:00:00 2001 From: Dovry Date: Mon, 20 Jan 2020 12:36:17 +0100 Subject: [PATCH] fix closing quotation mark in copy module(#66619) fix from "ntp.conf to "ntp.conf" in copy module documentation --- lib/ansible/modules/files/copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/files/copy.py b/lib/ansible/modules/files/copy.py index 21aa74c9379..e69b9de41fd 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