Allow service 'enable' parameter be 'enabled', which is what I'd personally try to use.

This commit is contained in:
Michael DeHaan 2012-05-09 23:13:13 -04:00
parent 3b6717245c
commit e2e4c2d7ce

View file

@ -117,7 +117,7 @@ if name is None:
state = params.get('state', 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
if state and state.lower() not in [ 'running', 'started', 'stopped', 'restarted' ]: