From bd793b85bff331e7d3ca613bf44a26f0345747d5 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Mon, 16 Jan 2017 15:12:34 +0100 Subject: [PATCH] Fix typo in my example (#20293) I noticed I was missing the -f flag to make this work correctly. --- lib/ansible/modules/files/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/files/template.py b/lib/ansible/modules/files/template.py index 3ba25d50c16..c13f1b7646c 100644 --- a/lib/ansible/modules/files/template.py +++ b/lib/ansible/modules/files/template.py @@ -109,6 +109,6 @@ EXAMPLES = ''' owner: root group: root mode: '0600' - validate: /usr/sbin/sshd -t %s + validate: /usr/sbin/sshd -t -f %s backup: yes '''