From b2cf9abec2e1c97337e775d9b62a9a58cec0a525 Mon Sep 17 00:00:00 2001 From: Milind Changire Date: Sun, 2 Mar 2025 20:50:29 +0530 Subject: [PATCH] cephadm: tweak podman kill command Signed-off-by: Milind Changire --- teuthology/orchestra/daemon/cephadmunit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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_), ]) -- 2.47.3