From: Milind Changire Date: Sun, 2 Mar 2025 15:20:29 +0000 (+0530) Subject: cephadm: tweak podman kill command X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fwip-mchangir-tweak-podman-kill-command;p=teuthology.git cephadm: tweak podman kill command Signed-off-by: Milind Changire --- diff --git a/teuthology/orchestra/daemon/cephadmunit.py b/teuthology/orchestra/daemon/cephadmunit.py index f4959b173..acfceffb2 100644 --- a/teuthology/orchestra/daemon/cephadmunit.py +++ b/teuthology/orchestra/daemon/cephadmunit.py @@ -35,8 +35,8 @@ class CephadmUnit(DaemonState): def kill_cmd(self, sig): return ' '.join([ - 'sudo', 'docker', 'kill', - '-s', str(int(sig)), + 'sudo', 'podman', 'kill', + f'-s={str(int(sig))}', 'ceph-%s-%s.%s' % (self.fsid, self.type_, self.id_), ])