From 48e3db76cfe5f63e400c31825377f76803bfc277 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 12 Oct 2012 15:07:47 +0200 Subject: [PATCH] ensure-dirs: Fix permissions on master socket A socket shouldn't have its executable bit set. Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/tools/ensure_dirs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tools/ensure_dirs.py b/lib/tools/ensure_dirs.py index 5fdb72365..868e36cd5 100644 --- a/lib/tools/ensure_dirs.py +++ b/lib/tools/ensure_dirs.py @@ -170,7 +170,7 @@ def GetPaths(): getent.daemons_gid), (constants.SOCKET_DIR, DIR, 0750, getent.masterd_uid, getent.daemons_gid), - (constants.MASTER_SOCKET, FILE, 0770, getent.masterd_uid, + (constants.MASTER_SOCKET, FILE, 0660, getent.masterd_uid, getent.daemons_gid, False), (constants.BDEV_CACHE_DIR, DIR, 0755, getent.noded_uid, getent.masterd_gid), -- GitLab