Fixed 'service'. Now it respect 'enabled=no' as well.
This commit is contained in:
parent
76f3351b02
commit
03c0b8dcb2
1 changed files with 2 additions and 2 deletions
|
@ -743,7 +743,7 @@ def main():
|
|||
service.get_service_tools()
|
||||
|
||||
# Enable/disable service startup at boot if requested
|
||||
if service.module.params['enabled']:
|
||||
if service.module.params['enabled'] is not None:
|
||||
# FIXME: ideally this should detect if we need to toggle the enablement state, though
|
||||
# it's unlikely the changed handler would need to fire in this case so it's a minor thing.
|
||||
service.service_enable()
|
||||
|
@ -766,7 +766,7 @@ def main():
|
|||
module.fail_json(msg=out)
|
||||
|
||||
result['changed'] = service.changed
|
||||
if service.module.params['enabled']:
|
||||
if service.module.params['enabled'] is not None:
|
||||
result['enabled'] = service.module.params['enabled']
|
||||
|
||||
if not service.module.params['state']:
|
||||
|
|
Loading…
Reference in a new issue