From ec3b51724f6dd56a2b4f8fb51eeed6a718f7880b Mon Sep 17 00:00:00 2001 From: dev-qwen2 Date: Fri, 17 Apr 2026 09:51:13 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20[nomad-step-3]=20S3-fix-3=20=E2=80=94=20?= =?UTF-8?q?host-volume=20dirs=20need=200777=20for=20non-root=20containers?= =?UTF-8?q?=20(#953)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/init/nomad/cluster-up.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/init/nomad/cluster-up.sh b/lib/init/nomad/cluster-up.sh index 4aab42d..4e39d88 100755 --- a/lib/init/nomad/cluster-up.sh +++ b/lib/init/nomad/cluster-up.sh @@ -116,7 +116,7 @@ if [ "$dry_run" = true ]; then [dry-run] Step 4/9: create host-volume dirs under /srv/disinto/ EOF for d in "${HOST_VOLUME_DIRS[@]}"; do - printf ' → install -d -m 0755 %s\n' "$d" + printf ' → install -d -m 0777 %s\n' "$d" done cat <