From: Sage Weil Date: Tue, 12 Mar 2013 00:06:57 +0000 (-0700) Subject: ceph-deploy: uninstall even when no archive X-Git-Tag: 1.1.0~2253 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=740fb85aaaedfdb5a92fedb19d8eb1a6230d8343;p=teuthology.git ceph-deploy: uninstall even when no archive Signed-off-by: Sage Weil --- diff --git a/teuthology/task/ceph-deploy.py b/teuthology/task/ceph-deploy.py index 7829b74426..f87b9a0fb7 100644 --- a/teuthology/task/ceph-deploy.py +++ b/teuthology/task/ceph-deploy.py @@ -284,9 +284,9 @@ def build_ceph_cluster(ctx, config): teuthology.pull_directory(remote, '/var/log/ceph', os.path.join(sub, 'log')) - log.info('Purging and Uninstalling ceph on test machines') - execute_ceph_deploy(ctx, config, purge_nodes) - execute_ceph_deploy(ctx, config, uninstall_nodes) + log.info('Purging and Uninstalling ceph on test machines') + execute_ceph_deploy(ctx, config, purge_nodes) + execute_ceph_deploy(ctx, config, uninstall_nodes) @contextlib.contextmanager def task(ctx, config):