diff --git a/lib/ansible/modules/user.py b/lib/ansible/modules/user.py index 28eef5c31c0..b81258153fd 100644 --- a/lib/ansible/modules/user.py +++ b/lib/ansible/modules/user.py @@ -2504,11 +2504,10 @@ class DarwinUser(User): Please note that password must be cleartext. """ # some documentation on how is stored passwords on OSX: - # http://blog.lostpassword.com/2012/07/cracking-mac-os-x-lion-accounts-passwords/ # http://null-byte.wonderhowto.com/how-to/hack-mac-os-x-lion-passwords-0130036/ # http://pastebin.com/RYqxi7Ca # on OSX 10.8+ hash is SALTED-SHA512-PBKDF2 - # https://pythonhosted.org/passlib/lib/passlib.hash.pbkdf2_digest.html + # https://passlib.readthedocs.io/en/stable/lib/passlib.hash.pbkdf2_digest.html # https://gist.github.com/nueh/8252572 cmd = self._get_dscl() if self.password: diff --git a/lib/ansible/modules/wait_for.py b/lib/ansible/modules/wait_for.py index a076bb14b65..31165e78f55 100644 --- a/lib/ansible/modules/wait_for.py +++ b/lib/ansible/modules/wait_for.py @@ -216,13 +216,13 @@ elapsed: type: int sample: 23 match_groups: - description: Tuple containing all the subgroups of the match as returned by U(https://docs.python.org/3/library/re.html#re.MatchObject.groups) + description: Tuple containing all the subgroups of the match as returned by U(https://docs.python.org/3/library/re.html#re.Match.groups) returned: always type: list sample: ['match 1', 'match 2'] match_groupdict: description: Dictionary containing all the named subgroups of the match, keyed by the subgroup name, - as returned by U(https://docs.python.org/3/library/re.html#re.MatchObject.groupdict) + as returned by U(https://docs.python.org/3/library/re.html#re.Match.groupdict) returned: always type: dict sample: diff --git a/lib/ansible/plugins/lookup/url.py b/lib/ansible/plugins/lookup/url.py index d3d3a4db37d..26c7c09d278 100644 --- a/lib/ansible/plugins/lookup/url.py +++ b/lib/ansible/plugins/lookup/url.py @@ -164,7 +164,7 @@ options: description: - SSL/TLS Ciphers to use for the request - 'When a list is provided, all ciphers are joined in order with C(:)' - - See the L(OpenSSL Cipher List Format,https://www.openssl.org/docs/manmaster/man1/openssl-ciphers.html#CIPHER-LIST-FORMAT) + - See the L(OpenSSL Cipher List Format,https://docs.openssl.org/master/man1/openssl-ciphers/#cipher-list-format) for more details. - The available ciphers is dependent on the Python and OpenSSL/LibreSSL versions type: list