Multiple fixes for OpenBSD rcctl handling.
* Use the newly added 'default' argument to know if the default flags are set or not. * Handle that 'status' may either return flags or YES/NO. * Centralize flag handling logic. * Set action variable after check if we need to keep going. Big thanks to @ajacoutot for implementing the rcctl 'default' argument.
This commit is contained in:
parent
522c644bf1
commit
6594a1458d
1 changed files with 34 additions and 6 deletions
|
@ -989,24 +989,52 @@ class OpenBsdService(Service):
|
|||
if not self.enable_cmd:
|
||||
return super(OpenBsdService, self).service_enable()
|
||||
|
||||
rc, stdout, stderr = self.execute_command("%s %s %s" % (self.enable_cmd, 'default', self.name))
|
||||
|
||||
if stderr:
|
||||
self.module.fail_json(msg=stderr)
|
||||
|
||||
default_flags = stdout.rstrip()
|
||||
|
||||
rc, stdout, stderr = self.execute_command("%s %s %s" % (self.enable_cmd, 'status', self.name))
|
||||
|
||||
if stderr:
|
||||
self.module.fail_json(msg=stderr)
|
||||
|
||||
current_flags = stdout.rstrip()
|
||||
status_string = stdout.rstrip()
|
||||
|
||||
# Depending on the service the string returned from 'status' may be
|
||||
# either a set of flags or the boolean YES/NO
|
||||
if status_string == "YES" or status_string == "N0":
|
||||
current_flags = ''
|
||||
else:
|
||||
current_flags = status_string
|
||||
|
||||
# If there are arguments from the user we use these as flags unless
|
||||
# they are already set.
|
||||
if self.arguments and self.arguments != current_flags:
|
||||
changed_flags = self.arguments
|
||||
# If the user has not supplied any arguments and the current flags
|
||||
# differ from the default we reset them.
|
||||
elif not self.arguments and current_flags != default_flags:
|
||||
changed_flags = ' '
|
||||
# Otherwise there is no need to modify flags.
|
||||
else:
|
||||
changed_flags = ''
|
||||
|
||||
if self.enable:
|
||||
action = "enable %s" % (self.name)
|
||||
if self.arguments or current_flags:
|
||||
action = action + " flags %s" % (self.arguments)
|
||||
if rc == 0 and self.arguments == current_flags:
|
||||
if rc == 0 and not changed_flags:
|
||||
return
|
||||
|
||||
action = "enable %s" % (self.name)
|
||||
if changed_flags:
|
||||
action = action + " flags %s" % (changed_flags)
|
||||
else:
|
||||
action = "disable %s" % self.name
|
||||
if rc == 1:
|
||||
return
|
||||
|
||||
action = "disable %s" % self.name
|
||||
|
||||
if self.module.check_mode:
|
||||
self.module.exit_json(changed=True, msg="changing service enablement")
|
||||
|
||||
|
|
Loading…
Reference in a new issue