mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 07:01:22 -07:00
Removed choices for boolean options, as requested
This commit is contained in:
parent
48c5930836
commit
29041f89e2
1 changed files with 4 additions and 6 deletions
|
@ -46,8 +46,7 @@ options:
|
||||||
a repository publish.
|
a repository publish.
|
||||||
required: false
|
required: false
|
||||||
type: bool
|
type: bool
|
||||||
choices: [ "yes", "no" ]
|
default: 'no'
|
||||||
default: "no"
|
|
||||||
version_added: "2.7"
|
version_added: "2.7"
|
||||||
importer_ssl_ca_cert:
|
importer_ssl_ca_cert:
|
||||||
description:
|
description:
|
||||||
|
@ -115,8 +114,7 @@ options:
|
||||||
this to "yes" automatically activates `generate_sqlite`.
|
this to "yes" automatically activates `generate_sqlite`.
|
||||||
required: false
|
required: false
|
||||||
type: bool
|
type: bool
|
||||||
choices: ["yes", "no"]
|
default: 'no'
|
||||||
default: no
|
|
||||||
version_added: "2.7"
|
version_added: "2.7"
|
||||||
serve_http:
|
serve_http:
|
||||||
description:
|
description:
|
||||||
|
@ -530,7 +528,7 @@ def main():
|
||||||
argument_spec.update(
|
argument_spec.update(
|
||||||
add_export_distributor=dict(default=False, type='bool'),
|
add_export_distributor=dict(default=False, type='bool'),
|
||||||
feed=dict(),
|
feed=dict(),
|
||||||
generate_sqlite=dict(default=False, type='bool', choices=[True, False]),
|
generate_sqlite=dict(default=False, type='bool'),
|
||||||
importer_ssl_ca_cert=dict(),
|
importer_ssl_ca_cert=dict(),
|
||||||
importer_ssl_client_cert=dict(),
|
importer_ssl_client_cert=dict(),
|
||||||
importer_ssl_client_key=dict(),
|
importer_ssl_client_key=dict(),
|
||||||
|
@ -543,7 +541,7 @@ def main():
|
||||||
pulp_host=dict(default="https://127.0.0.1"),
|
pulp_host=dict(default="https://127.0.0.1"),
|
||||||
relative_url=dict(),
|
relative_url=dict(),
|
||||||
repo_type=dict(default="rpm"),
|
repo_type=dict(default="rpm"),
|
||||||
repoview=dict(default=False, type='bool', choices=[True, False]),
|
repoview=dict(default=False, type='bool'),
|
||||||
serve_http=dict(default=False, type='bool'),
|
serve_http=dict(default=False, type='bool'),
|
||||||
serve_https=dict(default=True, type='bool'),
|
serve_https=dict(default=True, type='bool'),
|
||||||
state=dict(
|
state=dict(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue