mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1654 from dagwieers/service-None-fix
Make the default an empty string
This commit is contained in:
commit
30fd37a68f
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ def main():
|
|||
state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']),
|
||||
pattern = dict(required=False, default=None),
|
||||
enabled = dict(choices=BOOLEANS),
|
||||
arguments = dict(aliases=['args']),
|
||||
arguments = dict(aliases=['args'], default=''),
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue