Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Ochoa <lochoa@redhat.com>2022-10-06 14:41:06 +0300
committerGitHub <noreply@github.com>2022-10-06 14:41:06 +0300
commitf8f1c6a6b5d97df779ff4d427cebe41427533dd9 (patch)
tree9c41c5ca9bf08247d99518074e65a2e877f74a2d
parent44581289e808a7b02e68e74e9520b309a13edacf (diff)
Add password_hash filter and fix some nits (#78743)
Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
-rw-r--r--lib/ansible/modules/user.py6
1 files 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