From b0954dbeb46595a016f04d0aed7ba6ca3494b397 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Mon, 30 Oct 2017 11:14:06 +0100 Subject: [PATCH] Fix typo --- lib/ansible/modules/system/systemd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/systemd.py b/lib/ansible/modules/system/systemd.py index aada2c3412..f52ab1a445 100644 --- a/lib/ansible/modules/system/systemd.py +++ b/lib/ansible/modules/system/systemd.py @@ -283,7 +283,7 @@ def main(): module = AnsibleModule( argument_spec=dict( name=dict(type='str', aliases=['service', 'unit']), - state=dict(type='str', choices=['reloaded,' 'restarted', 'started', 'stopped']), + state=dict(type='str', choices=['reloaded', 'restarted', 'started', 'stopped']), enabled=dict(type='bool'), masked=dict(type='bool'), daemon_reload=dict(type='bool', default=False, aliases=['daemon-reload']),