|
|
|
@ -480,7 +480,7 @@ class LinuxService(Service):
|
|
|
|
def get_systemd_status_dict(self):
|
|
|
|
def get_systemd_status_dict(self):
|
|
|
|
(rc, out, err) = self.execute_command("%s show %s" % (self.enable_cmd, self.__systemd_unit,))
|
|
|
|
(rc, out, err) = self.execute_command("%s show %s" % (self.enable_cmd, self.__systemd_unit,))
|
|
|
|
if rc != 0:
|
|
|
|
if rc != 0:
|
|
|
|
self.module.fail_json('failure %d running systemctl show for %r: %s' % (self.__systemd_unit, rc, err))
|
|
|
|
self.module.fail_json(msg='failure %d running systemctl show for %r: %s' % (rc, self.__systemd_unit, err))
|
|
|
|
return dict(line.split('=', 1) for line in out.splitlines())
|
|
|
|
return dict(line.split('=', 1) for line in out.splitlines())
|
|
|
|
|
|
|
|
|
|
|
|
def get_systemd_service_status(self):
|
|
|
|
def get_systemd_service_status(self):
|
|
|
|
|