From: Laura Flores Date: Fri, 9 Aug 2024 18:35:43 +0000 (+0000) Subject: teuthology/orchestra/daemon: fix kill command X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fwip-fix-kill-cmd;p=teuthology.git teuthology/orchestra/daemon: fix kill command Signed-off-by: Laura Flores --- 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_), ])