From 721c0e9720e3dceb4f724ff9a1bae0b1e58dbef5 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 19 Nov 2011 20:56:26 -0800 Subject: [PATCH] nuke: don't specify full path /tmp/cephtest/binary may have been removed; kill stray daemons by name only. we really don't care about false positives here! --- teuthology/nuke.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/teuthology/nuke.py b/teuthology/nuke.py index 6e6f6f130255d..4bc11698c1f81 100644 --- a/teuthology/nuke.py +++ b/teuthology/nuke.py @@ -60,11 +60,11 @@ def shutdown_daemons(ctx, log): run.Raw(';'), 'killall', '--quiet', - '/tmp/cephtest/binary/usr/local/bin/ceph-mon', - '/tmp/cephtest/binary/usr/local/bin/ceph-osd', - '/tmp/cephtest/binary/usr/local/bin/ceph-mds', - '/tmp/cephtest/binary/usr/local/bin/ceph-fuse', - '/tmp/cephtest/binary/usr/local/bin/radosgw', + 'ceph-mon', + 'ceph-osd', + 'ceph-mds', + 'ceph-fuse', + 'radosgw', 'apache2', run.Raw('||'), 'true', # ignore errors from ceph binaries not being found -- 2.39.5