From 0d6502e4b5fc095f8bfd05b6c3cf461f43e11c4c Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Fri, 9 Aug 2024 18:35:43 +0000 Subject: [PATCH] teuthology/orchestra/daemon: fix kill command Signed-off-by: Laura Flores --- teuthology/orchestra/daemon/cephadmunit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/daemon/cephadmunit.py b/teuthology/orchestra/daemon/cephadmunit.py index 87c380d0d..77ce39a58 100644 --- a/teuthology/orchestra/daemon/cephadmunit.py +++ b/teuthology/orchestra/daemon/cephadmunit.py @@ -35,7 +35,7 @@ class CephadmUnit(DaemonState): def kill_cmd(self, sig): return ' '.join([ - 'sudo', 'systemctl', 'kill', + 'sudo', 'docker', 'kill', '-s', str(int(sig)), 'ceph-%s@%s.%s' % (self.fsid, self.type_, self.id_), ]) -- 2.47.3