mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
- 'name' should not be required so as to allow uninstalling a cron_file
This commit is contained in:
parent
6b2c89a422
commit
53e9caa1d0
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Description of a crontab entry.
|
- Description of a crontab entry.
|
||||||
default: null
|
default: null
|
||||||
required: true
|
required: false
|
||||||
user:
|
user:
|
||||||
description:
|
description:
|
||||||
- The specific user whose crontab should be modified.
|
- The specific user whose crontab should be modified.
|
||||||
|
@ -398,7 +398,7 @@ def main():
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
name=dict(required=True),
|
name=dict(required=False),
|
||||||
user=dict(required=False),
|
user=dict(required=False),
|
||||||
job=dict(required=False),
|
job=dict(required=False),
|
||||||
cron_file=dict(required=False),
|
cron_file=dict(required=False),
|
||||||
|
|
Loading…
Reference in a new issue