From f8f1c6a6b5d97df779ff4d427cebe41427533dd9 Mon Sep 17 00:00:00 2001 From: Leo Ochoa Date: Thu, 6 Oct 2022 13:41:06 +0200 Subject: [PATCH] Add password_hash filter and fix some nits (#78743) Co-authored-by: Abhijeet Kasurde --- lib/ansible/modules/user.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/user.py b/lib/ansible/modules/user.py index 9ad76a90948..b54759d87a8 100644 --- a/lib/ansible/modules/user.py +++ b/lib/ansible/modules/user.py @@ -86,10 +86,10 @@ options: version_added: "2.0" password: description: - - Optionally set the user's password to this crypted value. + - Optionally set the user's password to this encrypted value. - On macOS systems, this value has to be cleartext. Beware of security issues. - - To create a an account with a locked/disabled password on Linux systems, set this to C('!') or C('*'). - - To create a an account with a locked/disabled password on OpenBSD, set this to C('*************'). + - To create an account with a locked/disabled password on Linux systems, set this to C('!') or C('*'). + - To create an account with a locked/disabled password on OpenBSD, set this to C('*************'). - See L(FAQ entry,https://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-generate-encrypted-passwords-for-the-user-module) for details on various ways to generate these password values. type: str