Support option renaming in validate-modules.

pull/22282/head
Matt Clay 7 years ago
parent 293e624235
commit 673bfc06b9

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

Loading…
Cancel
Save