mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6426 from risaacson/migrate_booleans_bool_rax_files
Bulk update of choices=BOOLEANS to type='bool'
This commit is contained in:
commit
a6c89a86f6
1 changed files with 3 additions and 3 deletions
|
@ -337,11 +337,11 @@ def main():
|
|||
container=dict(),
|
||||
state=dict(choices=['present', 'absent', 'list'], default='present'),
|
||||
meta=dict(type='dict', default=dict()),
|
||||
clear_meta=dict(choices=BOOLEANS, default=False, type='bool'),
|
||||
clear_meta=dict(default=False, type='bool'),
|
||||
type=dict(choices=['container', 'meta'], default='container'),
|
||||
ttl=dict(type='int'),
|
||||
public=dict(choices=BOOLEANS, default=False, type='bool'),
|
||||
private=dict(choices=BOOLEANS, default=False, type='bool'),
|
||||
public=dict(default=False, type='bool'),
|
||||
private=dict(default=False, type='bool'),
|
||||
web_index=dict(),
|
||||
web_error=dict()
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue