Make the default an empty string
Seems a bit strange I have to set a default in two locations.
This commit is contained in:
parent
6f6559670f
commit
a2a04f3b6d
1 changed files with 1 additions and 1 deletions
2
service
2
service
|
@ -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