fixed enabled reporting
This commit is contained in:
parent
beb9ff9170
commit
96b2bc9084
1 changed files with 2 additions and 1 deletions
|
@ -321,7 +321,8 @@ def main():
|
||||||
(rc, out, err) = module.run_command("%s %s '%s'" % (systemctl, action, unit))
|
(rc, out, err) = module.run_command("%s %s '%s'" % (systemctl, action, unit))
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
module.fail_json(msg="Unable to %s service %s: %s" % (action, unit, err))
|
module.fail_json(msg="Unable to %s service %s: %s" % (action, unit, err))
|
||||||
result['enabled'] = module.params['enabled']
|
|
||||||
|
result['enabled'] = enabled
|
||||||
|
|
||||||
if module.params['state'] is not None:
|
if module.params['state'] is not None:
|
||||||
# What is current service state?
|
# What is current service state?
|
||||||
|
|
Loading…
Reference in a new issue