From 7905db9608893db1b4554e8da45167c9a330f825 Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Tue, 6 Aug 2024 17:18:25 +0000 Subject: [PATCH] Revert "orchestra/daemon/cephadmunit.py: fix method kill_cmd()" This reverts commit 2c6d64a222b4d38d4782ed407e045a86df0a6524. --- 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 87c380d0d4..f4959b1737 100644 --- a/teuthology/orchestra/daemon/cephadmunit.py +++ b/teuthology/orchestra/daemon/cephadmunit.py @@ -35,9 +35,9 @@ 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_), + 'ceph-%s-%s.%s' % (self.fsid, self.type_, self.id_), ]) def _start_logger(self): -- 2.39.5