From 24e5d5b87461cc0ccf74f15e0907c2c3e32bc43e Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Thu, 8 May 2025 11:53:01 -0600 Subject: [PATCH] setup: Ensure 777 on migratedir --- usr/local/share/bastille/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/setup.sh b/usr/local/share/bastille/setup.sh index 453632b3..8ca0936e 100644 --- a/usr/local/share/bastille/setup.sh +++ b/usr/local/share/bastille/setup.sh @@ -151,7 +151,7 @@ configure_filesystem() { else mkdir -p "${bastille_migratedir}" fi - chmod 0750 "${bastille_migratedir}" + chmod 777 "${bastille_migratedir}" fi }