Skip to content

Commit a2427e4

Browse files
authored
docs: use correct URL in docs (#85491)
* wait_for: use correct URL in docs Signed-off-by: Abhijeet Kasurde <[email protected]>
1 parent 19c7ec6 commit a2427e4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

lib/ansible/modules/user.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2504,11 +2504,10 @@ def _change_user_password(self):
25042504
Please note that password must be cleartext.
25052505
"""
25062506
# some documentation on how is stored passwords on OSX:
2507-
# http://blog.lostpassword.com/2012/07/cracking-mac-os-x-lion-accounts-passwords/
25082507
# http://null-byte.wonderhowto.com/how-to/hack-mac-os-x-lion-passwords-0130036/
25092508
# http://pastebin.com/RYqxi7Ca
25102509
# on OSX 10.8+ hash is SALTED-SHA512-PBKDF2
2511-
# https://pythonhosted.org/passlib/lib/passlib.hash.pbkdf2_digest.html
2510+
# https://passlib.readthedocs.io/en/stable/lib/passlib.hash.pbkdf2_digest.html
25122511
# https://gist.github.com/nueh/8252572
25132512
cmd = self._get_dscl()
25142513
if self.password:

lib/ansible/modules/wait_for.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,13 @@
216216
type: int
217217
sample: 23
218218
match_groups:
219-
description: Tuple containing all the subgroups of the match as returned by U(https://docs.python.org/3/library/re.html#re.MatchObject.groups)
219+
description: Tuple containing all the subgroups of the match as returned by U(https://docs.python.org/3/library/re.html#re.Match.groups)
220220
returned: always
221221
type: list
222222
sample: ['match 1', 'match 2']
223223
match_groupdict:
224224
description: Dictionary containing all the named subgroups of the match, keyed by the subgroup name,
225-
as returned by U(https://docs.python.org/3/library/re.html#re.MatchObject.groupdict)
225+
as returned by U(https://docs.python.org/3/library/re.html#re.Match.groupdict)
226226
returned: always
227227
type: dict
228228
sample:

lib/ansible/plugins/lookup/url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
description:
165165
- SSL/TLS Ciphers to use for the request
166166
- 'When a list is provided, all ciphers are joined in order with C(:)'
167-
- See the L(OpenSSL Cipher List Format,https://www.openssl.org/docs/manmaster/man1/openssl-ciphers.html#CIPHER-LIST-FORMAT)
167+
- See the L(OpenSSL Cipher List Format,https://docs.openssl.org/master/man1/openssl-ciphers/#cipher-list-format)
168168
for more details.
169169
- The available ciphers is dependent on the Python and OpenSSL/LibreSSL versions
170170
type: list

0 commit comments

Comments
 (0)