Commit 191ae083 by Brian Coca

fixed syntax error

parent 48412c13
...@@ -216,7 +216,7 @@ class Service(object): ...@@ -216,7 +216,7 @@ class Service(object):
def service_shared_arg_spec(): def service_shared_arg_spec():
return argument_spec = dict( return dict(
name = dict(required=True), name = dict(required=True),
state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']), state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']),
enabled = dict(type='bool'), enabled = dict(type='bool'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment