Allow service 'enable' parameter be 'enabled', which is what I'd personally try to use.
This commit is contained in:
parent
3b6717245c
commit
e2e4c2d7ce
1 changed files with 1 additions and 1 deletions
2
service
2
service
|
@ -117,7 +117,7 @@ if name is None:
|
||||||
|
|
||||||
state = params.get('state', None)
|
state = params.get('state', None)
|
||||||
list_items = params.get('list', None)
|
list_items = params.get('list', None)
|
||||||
enable = params.get('enable', None)
|
enable = params.get('enabled', params.get('enable', None))
|
||||||
|
|
||||||
# running and started are the same
|
# running and started are the same
|
||||||
if state and state.lower() not in [ 'running', 'started', 'stopped', 'restarted' ]:
|
if state and state.lower() not in [ 'running', 'started', 'stopped', 'restarted' ]:
|
||||||
|
|
Loading…
Reference in a new issue