mirror of
https://github.com/ansible/awx.git
synced 2026-03-16 00:17:29 -02:30
fixed validate-modules sanity tests
This commit is contained in:
committed by
Seth Foster
parent
d2d511f596
commit
535bbfcc39
@@ -388,24 +388,24 @@ def main():
|
||||
skip_tags=dict(),
|
||||
start_at_task=dict(),
|
||||
timeout=dict(type='int', default=0),
|
||||
use_fact_cache=dict(type='bool', aliases=['fact_caching_enabled']),
|
||||
host_config_key=dict(),
|
||||
ask_diff_mode_on_launch=dict(type='bool', aliases=['ask_diff_mode']),
|
||||
ask_variables_on_launch=dict(type='bool', aliases=['ask_extra_vars']),
|
||||
ask_limit_on_launch=dict(type='bool', aliases=['ask_limit']),
|
||||
ask_tags_on_launch=dict(type='bool', aliases=['ask_tags']),
|
||||
ask_skip_tags_on_launch=dict(type='bool', aliases=['ask_skip_tags']),
|
||||
ask_job_type_on_launch=dict(type='bool', aliases=['ask_job_type']),
|
||||
ask_verbosity_on_launch=dict(type='bool', aliases=['ask_verbosity']),
|
||||
ask_inventory_on_launch=dict(type='bool', aliases=['ask_inventory']),
|
||||
ask_credential_on_launch=dict(type='bool', aliases=['ask_credential']),
|
||||
survey_enabled=dict(type='bool'),
|
||||
use_fact_cache=dict(type='bool', aliases=['fact_caching_enabled'], default=False),
|
||||
host_config_key=dict(no_log=True),
|
||||
ask_diff_mode_on_launch=dict(type='bool', aliases=['ask_diff_mode'], default=False),
|
||||
ask_variables_on_launch=dict(type='bool', aliases=['ask_extra_vars'], default=False),
|
||||
ask_limit_on_launch=dict(type='bool', aliases=['ask_limit'], default=False),
|
||||
ask_tags_on_launch=dict(type='bool', aliases=['ask_tags'], default=False),
|
||||
ask_skip_tags_on_launch=dict(type='bool', aliases=['ask_skip_tags'], default=False),
|
||||
ask_job_type_on_launch=dict(type='bool', aliases=['ask_job_type'], default=False),
|
||||
ask_verbosity_on_launch=dict(type='bool', aliases=['ask_verbosity'], default=False),
|
||||
ask_inventory_on_launch=dict(type='bool', aliases=['ask_inventory'], default=False),
|
||||
ask_credential_on_launch=dict(type='bool', aliases=['ask_credential'], default=False),
|
||||
survey_enabled=dict(type='bool', default=False),
|
||||
survey_spec=dict(type="dict"),
|
||||
become_enabled=dict(type='bool'),
|
||||
diff_mode=dict(type='bool', aliases=['diff_mode_enabled']),
|
||||
allow_simultaneous=dict(type='bool', aliases=['concurrent_jobs_enabled']),
|
||||
become_enabled=dict(type='bool', default=False),
|
||||
diff_mode=dict(type='bool', aliases=['diff_mode_enabled'], default=False),
|
||||
allow_simultaneous=dict(type='bool', aliases=['concurrent_jobs_enabled'], default=False),
|
||||
scm_branch=dict(),
|
||||
ask_scm_branch_on_launch=dict(type='bool'),
|
||||
ask_scm_branch_on_launch=dict(type='bool', default=False),
|
||||
job_slice_count=dict(type='int', default='1'),
|
||||
webhook_service=dict(choices=['github', 'gitlab', '']),
|
||||
webhook_credential=dict(),
|
||||
|
||||
Reference in New Issue
Block a user