]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
cephadm: tweak podman kill command wip-mchangir-tweak-podman-kill-command
authorMilind Changire <mchangir@redhat.com>
Sun, 2 Mar 2025 15:20:29 +0000 (20:50 +0530)
committerMilind Changire <mchangir@redhat.com>
Sun, 2 Mar 2025 15:20:29 +0000 (20:50 +0530)
Signed-off-by: Milind Changire <mchangir@redhat.com>
teuthology/orchestra/daemon/cephadmunit.py

index f4959b17370dc66e8e8184dc877de714476836d5..acfceffb21298404c44cb816ccbac554a8908f43 100644 (file)
@@ -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_),
         ])