mirror of
https://github.com/ansible/awx.git
synced 2026-03-23 11:55:04 -02:30
Allow job_template collection module to set verbosity to 5 (#14244)
This commit is contained in:
@@ -108,7 +108,7 @@ options:
|
|||||||
verbosity:
|
verbosity:
|
||||||
description:
|
description:
|
||||||
- Control the output level Ansible produces as the playbook runs. 0 - Normal, 1 - Verbose, 2 - More Verbose, 3 - Debug, 4 - Connection Debug.
|
- Control the output level Ansible produces as the playbook runs. 0 - Normal, 1 - Verbose, 2 - More Verbose, 3 - Debug, 4 - Connection Debug.
|
||||||
choices: [0, 1, 2, 3, 4]
|
choices: [0, 1, 2, 3, 4, 5]
|
||||||
type: int
|
type: int
|
||||||
extra_vars:
|
extra_vars:
|
||||||
description:
|
description:
|
||||||
@@ -404,7 +404,7 @@ def main():
|
|||||||
instance_groups=dict(type="list", elements='str'),
|
instance_groups=dict(type="list", elements='str'),
|
||||||
forks=dict(type='int'),
|
forks=dict(type='int'),
|
||||||
limit=dict(),
|
limit=dict(),
|
||||||
verbosity=dict(type='int', choices=[0, 1, 2, 3, 4]),
|
verbosity=dict(type='int', choices=[0, 1, 2, 3, 4, 5]),
|
||||||
extra_vars=dict(type='dict'),
|
extra_vars=dict(type='dict'),
|
||||||
job_tags=dict(),
|
job_tags=dict(),
|
||||||
force_handlers=dict(type='bool', aliases=['force_handlers_enabled']),
|
force_handlers=dict(type='bool', aliases=['force_handlers_enabled']),
|
||||||
|
|||||||
Reference in New Issue
Block a user