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']),
|
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=''),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue