mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge branch 'issues/6341' of https://github.com/threatgrid/ansible into threatgrid-issues/6341
This commit is contained in:
commit
bc38bfe61b
1 changed files with 28 additions and 3 deletions
|
@ -477,7 +477,34 @@ class LinuxService(Service):
|
||||||
if location.get('initctl', None):
|
if location.get('initctl', None):
|
||||||
self.svc_initctl = location['initctl']
|
self.svc_initctl = location['initctl']
|
||||||
|
|
||||||
|
def get_systemd_status_dict(self):
|
||||||
|
(rc, out, err) = self.execute_command("%s show %s" % (self.enable_cmd, self.__systemd_unit,))
|
||||||
|
if rc != 0:
|
||||||
|
self.module.fail_json('failure %d running systemctl show for %r: %s' % (self.__systemd_unit, rc, err))
|
||||||
|
return dict(line.split('=', 1) for line in out.splitlines())
|
||||||
|
|
||||||
|
def get_systemd_service_status(self):
|
||||||
|
d = self.get_systemd_status_dict()
|
||||||
|
if d.get('ActiveState') == 'active':
|
||||||
|
# run-once services (for which a single successful exit indicates
|
||||||
|
# that they are running as designed) should not be restarted here.
|
||||||
|
# Thus, we are not checking d['SubState'].
|
||||||
|
self.running = True
|
||||||
|
self.crashed = False
|
||||||
|
elif d.get('ActiveState') == 'failed':
|
||||||
|
self.running = False
|
||||||
|
self.crashed = True
|
||||||
|
elif d.get('ActiveState') is None:
|
||||||
|
self.module.fail_json(msg='No ActiveState value in systemctl show output for %r' % (self.__systemd_unit,))
|
||||||
|
else:
|
||||||
|
self.running = False
|
||||||
|
self.crashed = False
|
||||||
|
return self.running
|
||||||
|
|
||||||
def get_service_status(self):
|
def get_service_status(self):
|
||||||
|
if self.svc_cmd and self.svc_cmd.endswith('systemctl'):
|
||||||
|
return self.get_systemd_service_status()
|
||||||
|
|
||||||
self.action = "status"
|
self.action = "status"
|
||||||
rc, status_stdout, status_stderr = self.service_control()
|
rc, status_stdout, status_stderr = self.service_control()
|
||||||
|
|
||||||
|
@ -589,9 +616,7 @@ class LinuxService(Service):
|
||||||
return
|
return
|
||||||
|
|
||||||
if self.enable_cmd.endswith("systemctl"):
|
if self.enable_cmd.endswith("systemctl"):
|
||||||
(rc, out, err) = self.execute_command("%s show %s" % (self.enable_cmd, self.__systemd_unit))
|
d = self.get_systemd_status_dict()
|
||||||
|
|
||||||
d = dict(line.split('=', 1) for line in out.splitlines())
|
|
||||||
if "UnitFileState" in d:
|
if "UnitFileState" in d:
|
||||||
if self.enable and d["UnitFileState"] == "enabled":
|
if self.enable and d["UnitFileState"] == "enabled":
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue