Allow job_template collection module to set verbosity to 5 (#14244)

This commit is contained in:
Sean Sullivan
2023-07-17 10:48:14 -04:00
committed by GitHub
parent b8ba2feecd
commit b021ad7b28

View File

@@ -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']),