From 80ff1cb84d5f69e99a8806546dd2edfb191309f3 Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Wed, 1 May 2024 19:23:05 +0530 Subject: [PATCH] cephadmunit.py: replace docker with systemctl Signed-off-by: Vallari Agrawal --- teuthology/orchestra/daemon/cephadmunit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/daemon/cephadmunit.py b/teuthology/orchestra/daemon/cephadmunit.py index 7b10f819fa..097a1040e1 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', 'docker', 'kill', + 'sudo', 'systemctl', 'kill', '-s', str(int(sig)), 'ceph-%s-%s.%s' % (self.fsid, self.type_, self.id_), ]) -- 2.39.5