mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 10:38:15 -03:30
added fix for preserve existing children issue. (#13374)
* added fix for preserve existing children issue. * Modified line 131 to call actual parm name. * Removed line 132 after updating.
This commit is contained in:
@@ -128,7 +128,7 @@ def main():
|
||||
description = module.params.get('description')
|
||||
state = module.params.pop('state')
|
||||
preserve_existing_hosts = module.params.get('preserve_existing_hosts')
|
||||
preserve_existing_children = module.params.get('preserve_existing_groups')
|
||||
preserve_existing_children = module.params.get('preserve_existing_children')
|
||||
variables = module.params.get('variables')
|
||||
|
||||
# Attempt to look up the related items the user specified (these will fail the module if not found)
|
||||
|
||||
Reference in New Issue
Block a user