1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Make the default an empty string

Seems a bit strange I have to set a default in two locations.
This commit is contained in:
Dag Wieers 2012-11-21 16:11:20 +01:00
parent 6b69b37eb0
commit 118ccc68c9

View file

@ -265,7 +265,7 @@ def main():
state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']), state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']),
pattern = dict(required=False, default=None), pattern = dict(required=False, default=None),
enabled = dict(choices=BOOLEANS), enabled = dict(choices=BOOLEANS),
arguments = dict(aliases=['args']), arguments = dict(aliases=['args'], default=''),
) )
) )