From 43ef3a2bd990e2ea67fde1abf85b59496265dfbb Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Thu, 5 Mar 2015 11:42:34 +0100 Subject: [PATCH] Update authorized_key.py Fix a (common) error in the examples. This is something that may go unnoticed during troubleshooting when copy&pasting the example. --- lib/ansible/modules/system/authorized_key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/authorized_key.py b/lib/ansible/modules/system/authorized_key.py index 38a8b96d83f..be2a442346d 100644 --- a/lib/ansible/modules/system/authorized_key.py +++ b/lib/ansible/modules/system/authorized_key.py @@ -111,7 +111,7 @@ EXAMPLES = ''' key_options='no-port-forwarding,host="10.0.1.1"' # Set up authorized_keys exclusively with one key -- authorized_keys: user=root key=public_keys/doe-jane state=present +- authorized_key: user=root key=public_keys/doe-jane state=present exclusive=yes '''