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:
@@ -259,13 +259,13 @@ def main():
|
||||
job=dict(required=False),
|
||||
cron_file=dict(required=False),
|
||||
state=dict(default='present', choices=['present', 'absent']),
|
||||
backup=dict(default=False, choices=BOOLEANS, type='bool'),
|
||||
backup=dict(default=False, type='bool'),
|
||||
minute=dict(default='*'),
|
||||
hour=dict(default='*'),
|
||||
day=dict(default='*'),
|
||||
month=dict(default='*'),
|
||||
weekday=dict(default='*'),
|
||||
reboot=dict(required=False, default=False, choices=BOOLEANS, type='bool')
|
||||
reboot=dict(required=False, default=False, type='bool')
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user