From d8b6bf94ec04c1c327f00289f0436e244746ac70 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 18 Feb 2013 09:41:00 -0800 Subject: [PATCH] ceph: create /var/run/ceph Signed-off-by: Sage Weil --- teuthology/task/ceph.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index e06c58fbd3..f2e4f862d6 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -373,6 +373,16 @@ def cluster(ctx, config): ) ) + run.wait( + ctx.cluster.run( + args=[ + 'sudo', + 'install', '-d', '-m0755', '--', '/var/run/ceph', + ], + wait=False, + ) + ) + devs_to_clean = {} remote_to_roles_to_devs = {} -- 2.39.5