From: Warren Usui Date: Tue, 11 Jun 2013 23:50:09 +0000 (-0700) Subject: Use install -d for /var/log/ceph. X-Git-Tag: 1.1.0~2123^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8f29b3f9f1f294c449bb5215767cad67fdf7cde6;p=teuthology.git Use install -d for /var/log/ceph. Additional fix needed for #4946 Signed-off-by: Warren Usui --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index dfa1eafdc..f8c292d0e 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -104,8 +104,7 @@ def ceph_log(ctx, config): ctx.cluster.run( args=[ 'sudo', - 'chmod', - '777', + 'install', '-d', '-m0755', '--', '/var/log/ceph', ], wait=False,