From 56a04209b8d9b2e771a87ef71af2837b0560474f Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 17 Oct 2015 18:41:03 +0200 Subject: [PATCH] Fixing chmod in install script --- scripts/install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 506454f..d8329d0 100755 --- a/scripts/install +++ b/scripts/install @@ -55,7 +55,8 @@ sudo chown -R root:www-data $final_path sudo chmod -R o-rwx $final_path for folder in cache config exports logs photos templates_c tempimages do - sudo chmod u+rx g+rwx $final_path/data/$folder + sudo chmod u+rx $final_path/data/$folder + sudo chmod g+rwx $final_path/data/$folder done ####################################################