mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Support option renaming in validate-modules.
This commit is contained in:
@@ -798,8 +798,9 @@ class ModuleValidator(Validator):
|
||||
strict_ansible_version = StrictVersion(should_be)
|
||||
|
||||
for option, details in options.items():
|
||||
new = not bool(existing_options.get(option))
|
||||
if not new:
|
||||
names = [option] + details.get('aliases', [])
|
||||
|
||||
if any(name in existing_options for name in names):
|
||||
continue
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user