mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
- 'name' should not be required so as to allow uninstalling a cron_file
This commit is contained in:
committed by
Matt Clay
parent
6b2c89a422
commit
53e9caa1d0
@@ -46,7 +46,7 @@ options:
|
||||
description:
|
||||
- Description of a crontab entry.
|
||||
default: null
|
||||
required: true
|
||||
required: false
|
||||
user:
|
||||
description:
|
||||
- The specific user whose crontab should be modified.
|
||||
@@ -398,7 +398,7 @@ def main():
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
name=dict(required=True),
|
||||
name=dict(required=False),
|
||||
user=dict(required=False),
|
||||
job=dict(required=False),
|
||||
cron_file=dict(required=False),
|
||||
|
||||
Reference in New Issue
Block a user