From: Vasu Kulkarni Date: Wed, 14 Jun 2017 22:36:17 +0000 (-0700) Subject: remove any stale /var/run/ceph X-Git-Tag: 1.1.0~418^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1082%2Fhead;p=teuthology.git remove any stale /var/run/ceph Signed-off-by: Vasu Kulkarni --- diff --git a/teuthology/nuke/actions.py b/teuthology/nuke/actions.py index e332d4c9c..d994ca95c 100644 --- a/teuthology/nuke/actions.py +++ b/teuthology/nuke/actions.py @@ -333,10 +333,11 @@ def remove_installed_packages(ctx): def remove_ceph_data(ctx): - log.info("Removing ceph data...") + log.info("Removing any stale ceph data...") ctx.cluster.run( args=[ 'sudo', 'rm', '-rf', '/etc/ceph', + run.Raw('/var/run/ceph*'), ], ) install_task.purge_data(ctx)