mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed syntax error
This commit is contained in:
parent
48412c13b2
commit
191ae0831d
1 changed files with 1 additions and 1 deletions
|
@ -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'),
|
||||||
|
|
Loading…
Add table
Reference in a new issue