From ec01b84152fd3817e056fc4e144bb90205c6f986 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Mon, 3 Jul 2023 11:45:19 +0200 Subject: host-control: Fixup variable name Signed-off-by: Paul Kocialkowski --- host-control | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/host-control b/host-control index 25de156..b4c1e9b 100755 --- a/host-control +++ b/host-control @@ -457,19 +457,21 @@ class host_control(): def system_daemon_status(self, host): command = [ "systemctl", "status" ] + self.host_call(host, command) def system_daemon_log(self, host): command = [ "journalctl", "-n", "50", "-fb" ] + self.host_call(host, command) def system_daemon_reload(self, host): - arguments = [ "systemctl", "daemon-reload" ] + command = [ "systemctl", "daemon-reload" ] self.host_call(host, command) def system_docker_status(self, host): - arguments = [ "docker", "ps" ] + command = [ "docker", "ps" ] self.host_call(host, command) -- cgit v1.2.3