mirror of
https://github.com/ansible/awx.git
synced 2026-03-22 19:35:02 -02:30
Removing manual and file source types and correcting default for custom_virtualenv
This commit is contained in:
committed by
beeankha
parent
7908f25747
commit
badd667efa
@@ -45,7 +45,7 @@ options:
|
|||||||
source:
|
source:
|
||||||
description:
|
description:
|
||||||
- The source to use for this group.
|
- The source to use for this group.
|
||||||
choices: [ "manual", "file", "scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "cloudforms", "openstack", "rhv", "tower", "custom" ]
|
choices: [ "scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "cloudforms", "openstack", "rhv", "tower", "custom" ]
|
||||||
type: str
|
type: str
|
||||||
required: False
|
required: False
|
||||||
source_path:
|
source_path:
|
||||||
@@ -157,7 +157,7 @@ def main():
|
|||||||
#
|
#
|
||||||
# How do we handle manual and file? Tower does not seem to be able to activate them
|
# How do we handle manual and file? Tower does not seem to be able to activate them
|
||||||
#
|
#
|
||||||
source=dict(choices=["manual", "file", "scm", "ec2", "gce",
|
source=dict(choices=["scm", "ec2", "gce",
|
||||||
"azure_rm", "vmware", "satellite6", "cloudforms",
|
"azure_rm", "vmware", "satellite6", "cloudforms",
|
||||||
"openstack", "rhv", "tower", "custom"], required=False),
|
"openstack", "rhv", "tower", "custom"], required=False),
|
||||||
source_path=dict(),
|
source_path=dict(),
|
||||||
@@ -169,7 +169,7 @@ def main():
|
|||||||
group_by=dict(),
|
group_by=dict(),
|
||||||
overwrite=dict(type='bool'),
|
overwrite=dict(type='bool'),
|
||||||
overwrite_vars=dict(type='bool'),
|
overwrite_vars=dict(type='bool'),
|
||||||
custom_virtualenv=dict(type='str'),
|
custom_virtualenv=dict(type='str', default=''),
|
||||||
timeout=dict(type='int'),
|
timeout=dict(type='int'),
|
||||||
verbosity=dict(type='int', choices=[0, 1, 2]),
|
verbosity=dict(type='int', choices=[0, 1, 2]),
|
||||||
update_on_launch=dict(type='bool'),
|
update_on_launch=dict(type='bool'),
|
||||||
|
|||||||
Reference in New Issue
Block a user