mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Dont exit in FreeBSD/NetBSD subclass in check mode
* As the FIXMEs note: only exit if enable state is going to change. * This is already handled in service_enable_rcconf() being called by both subclasses.
This commit is contained in:
parent
0c00dcca34
commit
88a840e52f
1 changed files with 0 additions and 8 deletions
|
@ -595,10 +595,6 @@ class FreeBsdService(Service):
|
|||
|
||||
self.rcconf_key = "%s_enable" % self.name
|
||||
|
||||
# FIXME: detect the enablement state rather than just running the command
|
||||
if self.module.check_mode:
|
||||
self.module.exit_json(changed=True, msg="editing service enablement")
|
||||
|
||||
return self.service_enable_rcconf()
|
||||
|
||||
def service_control(self):
|
||||
|
@ -678,10 +674,6 @@ class NetBsdService(Service):
|
|||
else:
|
||||
self.rcconf_value = "NO"
|
||||
|
||||
# FIXME: need to decide whether to run enablement command or not
|
||||
if self.module.check_mode:
|
||||
self.module.exit_json(changed=True, msg="editing service enablement")
|
||||
|
||||
rcfiles = [ '/etc/rc.conf' ] # Overkill?
|
||||
for rcfile in rcfiles:
|
||||
if os.path.isfile(rcfile):
|
||||
|
|
Loading…
Reference in a new issue