From 89ff6d74b97189e4716b4d9164ecc7a57332c25a Mon Sep 17 00:00:00 2001 From: Sergey Date: Sat, 2 Sep 2023 14:39:08 -0400 Subject: [PATCH] Docs: fix unclearence add example with reletive pathes #483 --- plugins/modules/authorized_key.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/modules/authorized_key.py b/plugins/modules/authorized_key.py index 424ee4ad15..b993d24cf0 100644 --- a/plugins/modules/authorized_key.py +++ b/plugins/modules/authorized_key.py @@ -28,8 +28,7 @@ required: true path: description: - - Alternate path to the authorized_keys file. - - When unset, this value defaults to I(~/.ssh/authorized_keys). + - It's not necessary to set this key. The default value should be enough most of the time. type: path manage_dir: description: @@ -204,7 +203,7 @@ # ========= # user = username # key = line to add to authorized_keys for user -# path = path to the user's authorized_keys file (default: ~/.ssh/authorized_keys) +# path = path to the user's authorized_keys file (default: ~user/.ssh/authorized_keys) # manage_dir = whether to create, and control ownership of the directory (default: true) # state = absent|present (default: present) #