mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Merge pull request #7707 from rrgomes/devel
Fix incorrect argument ordering in error message
This commit is contained in:
@@ -480,7 +480,7 @@ class LinuxService(Service):
|
||||
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))
|
||||
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())
|
||||
|
||||
def get_systemd_service_status(self):
|
||||
|
||||
Reference in New Issue
Block a user