mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2340 from niksite/devel
Fixed 'service'. Now it respect 'enabled=no' as well.
This commit is contained in:
commit
c4aa72f1fd
1 changed files with 2 additions and 2 deletions
|
@ -743,7 +743,7 @@ def main():
|
||||||
service.get_service_tools()
|
service.get_service_tools()
|
||||||
|
|
||||||
# Enable/disable service startup at boot if requested
|
# 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
|
# 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.
|
# it's unlikely the changed handler would need to fire in this case so it's a minor thing.
|
||||||
service.service_enable()
|
service.service_enable()
|
||||||
|
@ -766,7 +766,7 @@ def main():
|
||||||
module.fail_json(msg=out)
|
module.fail_json(msg=out)
|
||||||
|
|
||||||
result['changed'] = service.changed
|
result['changed'] = service.changed
|
||||||
if service.module.params['enabled']:
|
if service.module.params['enabled'] is not None:
|
||||||
result['enabled'] = service.module.params['enabled']
|
result['enabled'] = service.module.params['enabled']
|
||||||
|
|
||||||
if not service.module.params['state']:
|
if not service.module.params['state']:
|
||||||
|
|
Loading…
Reference in a new issue