Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update links to Ansible docs for new site layout #1382

Merged
merged 1 commit into from Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/DeprecatedModuleRule.py
Expand Up @@ -12,7 +12,7 @@ class DeprecatedModuleRule(AnsibleLintRule):
'These are deprecated modules, some modules are kept '
'temporarily for backwards compatibility but usage is discouraged. '
'For more details see: '
'https://docs.ansible.com/ansible/latest/modules/list_of_all_modules.html'
'https://docs.ansible.com/ansible/latest/collections/index_module.html'
)
severity = 'HIGH'
tags = ['deprecations']
Expand Down
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/OctalPermissionsRule.py
Expand Up @@ -29,7 +29,7 @@ class OctalPermissionsRule(AnsibleLintRule):
description = (
'Numeric file permissions without leading zero can behave '
'in unexpected ways. See '
'http://docs.ansible.com/ansible/file_module.html'
'https://docs.ansible.com/ansible/latest/collections/ansible/builtin/file_module.html'
)
severity = 'VERY_HIGH'
tags = ['formatting']
Expand Down