mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
Replace choices=BOOLEANS by type='bool', fix #1326
This commit is contained in:
parent
c7f6b5e41f
commit
df195b3076
13 changed files with 34 additions and 34 deletions
|
@ -1684,7 +1684,7 @@ def main():
|
|||
type='str'
|
||||
),
|
||||
container_log=dict(
|
||||
choices=BOOLEANS,
|
||||
type='bool',
|
||||
default='false'
|
||||
),
|
||||
container_log_level=dict(
|
||||
|
@ -1696,11 +1696,11 @@ def main():
|
|||
required=False
|
||||
),
|
||||
clone_snapshot=dict(
|
||||
choices=BOOLEANS,
|
||||
type='bool',
|
||||
default='false'
|
||||
),
|
||||
archive=dict(
|
||||
choices=BOOLEANS,
|
||||
type='bool',
|
||||
default='false'
|
||||
),
|
||||
archive_path=dict(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue