mirror of
https://github.com/ansible/awx.git
synced 2026-05-15 21:37:42 -02:30
Merge pull request #13379 from OscarBell/issue_13377
Fix verbosity parameter choices for ad_hoc_command module
This commit is contained in:
@@ -123,7 +123,7 @@ def main():
|
|||||||
module_name=dict(required=True),
|
module_name=dict(required=True),
|
||||||
module_args=dict(),
|
module_args=dict(),
|
||||||
forks=dict(type='int'),
|
forks=dict(type='int'),
|
||||||
verbosity=dict(type='int', choices=['0', '1', '2', '3', '4', '5']),
|
verbosity=dict(type='int', choices=[0, 1, 2, 3, 4, 5]),
|
||||||
extra_vars=dict(type='dict'),
|
extra_vars=dict(type='dict'),
|
||||||
become_enabled=dict(type='bool'),
|
become_enabled=dict(type='bool'),
|
||||||
diff_mode=dict(type='bool'),
|
diff_mode=dict(type='bool'),
|
||||||
|
|||||||
Reference in New Issue
Block a user