From 65deb7f50f4a68e60d83fb246df8d4eab6e4d310 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Tue, 11 Mar 2014 09:57:35 +0100 Subject: [PATCH] authorized_key: Be more specific about manage_dir - Explain which properties are managed when manage_dir is True. --- library/system/authorized_key | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/library/system/authorized_key b/library/system/authorized_key index 1a7c8b97b0e..8185cc4646d 100644 --- a/library/system/authorized_key +++ b/library/system/authorized_key @@ -48,7 +48,11 @@ options: version_added: "1.2" manage_dir: description: - - Whether this module should manage the directory of the authorized_keys file. Make sure to set C(manage_dir=no) if you are using an alternate directory for authorized_keys set with C(path), since you could lock yourself out of SSH access. See the example below. + - Whether this module should manage (create it, change owner and + permissions) the directory of the authorized_keys file. Make sure to + set C(manage_dir=no) if you are using an alternate directory for + authorized_keys set with C(path), since you could lock yourself out of + SSH access. See the example below. required: false choices: [ "yes", "no" ] default: "yes"