From 953ca38b6770ff6787a1ea1744e2e84cf07a505a Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Fri, 10 Feb 2017 01:40:07 +0100 Subject: [PATCH] Fix typo in example (#21227) --- lib/ansible/modules/files/template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/files/template.py b/lib/ansible/modules/files/template.py index f60bf20fe5..b99c3fa727 100644 --- a/lib/ansible/modules/files/template.py +++ b/lib/ansible/modules/files/template.py @@ -102,10 +102,10 @@ EXAMPLES = ''' dest: /etc/sudoers validate: 'visudo -cf %s' -# Update SSH configuration safely (avoid shutting yourself out) +# Update sshd configuration safely, avoid locking yourself out - template: src: etc/ssh/sshd_config.j2 - dest: /etc/ssh/sshd_config.j2 + dest: /etc/ssh/sshd_config owner: root group: root mode: '0600'