From 80a849fef7e69b49d983590162c7b4b92610a817 Mon Sep 17 00:00:00 2001 From: Pit Kleyersburg Date: Tue, 31 Oct 2017 15:30:33 +0100 Subject: [PATCH] Set `g+w` on the consumption/export directories This should fix issue #267. --- scripts/docker-entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/docker-entrypoint.sh b/scripts/docker-entrypoint.sh index 60b369cae..38b8ac1da 100644 --- a/scripts/docker-entrypoint.sh +++ b/scripts/docker-entrypoint.sh @@ -25,16 +25,16 @@ set_permissions() { echo "failed." echo "" echo "Either try to set it on your host-mounted directory" - echo "directly, or make sure that the directory has \`o+x\`" + echo "directly, or make sure that the directory has \`g+wx\`" echo "permissions and the files in it at least \`o+r\`." } >&2 - chmod g+x "${!dir}" || { + chmod g+wx "${!dir}" || { echo "Changing group permissions of ${cur_dir_name} directory:" echo " ${!dir}" echo "failed." echo "" echo "Either try to set it on your host-mounted directory" - echo "directly, or make sure that the directory has \`o+x\`" + echo "directly, or make sure that the directory has \`g+wx\`" echo "permissions and the files in it at least \`o+r\`." } >&2 done