From 20ec5e66e1c0aa787795633aec16f41677f1f4e7 Mon Sep 17 00:00:00 2001 From: mirfire <1897695+mirfire@users.noreply.github.com> Date: Tue, 11 Jun 2019 15:38:30 +0000 Subject: [PATCH] Fixed heading link password field in user module (#57694) ##### SUMMARY In the [user module](https://docs.ansible.com/ansible/latest/modules/user_module.html#user-module), the password field links to `https://docs.ansible.com/ansible/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module`, but the actual link is `https://docs.ansible.com/ansible/faq.html#how-do-i-generate-encrypted-passwords-for-the-user-module` as it was modified in d27d956d71428315397b855e1b094a9caddfa3fd So I corrected the link in the user module to the actual link. ##### ISSUE TYPE - Docs Pull Request +label: docsite_pr --- lib/ansible/modules/system/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/user.py b/lib/ansible/modules/system/user.py index cc1ab81190c..9ba1f7b2e76 100644 --- a/lib/ansible/modules/system/user.py +++ b/lib/ansible/modules/system/user.py @@ -91,7 +91,7 @@ options: - Optionally set the user's password to this crypted value. - On macOS systems, this value has to be cleartext. Beware of security issues. - To create a disabled account on Linux systems, set this to C('!') or C('*'). - - See U(https://docs.ansible.com/ansible/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module) + - See U(https://docs.ansible.com/ansible/faq.html#how-do-i-generate-encrypted-passwords-for-the-user-module) for details on various ways to generate these password values. type: str state: