mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Remove choices=BOOLEANS as it is no longer needed
This commit is contained in:
@@ -78,8 +78,8 @@ def main():
|
||||
argument_spec = dict(
|
||||
src=dict(required=True),
|
||||
dest=dict(required=True),
|
||||
backup=dict(default=False, choices=BOOLEANS, type='bool'),
|
||||
force = dict(default='yes', choices=BOOLEANS, aliases=['thirsty'], type='bool'),
|
||||
backup=dict(default=False, type='bool'),
|
||||
force = dict(default='yes', aliases=['thirsty'], type='bool'),
|
||||
),
|
||||
add_file_common_args=True,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user