docs: use correct URL in docs (#85491)

* wait_for: use correct URL in docs

Signed-off-by: Abhijeet Kasurde <Akasurde@redhat.com>
pull/85516/head
Abhijeet Kasurde 5 months ago committed by GitHub
parent 19c7ec6ed2
commit a2427e45df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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:

@ -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:

@ -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

Loading…
Cancel
Save