1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/galette_ynh.git synced 2024-09-03 18:36:28 +02:00

Fixing chmod in install script

This commit is contained in:
Alexandre Aubin 2015-10-17 18:41:03 +02:00
parent 36fa77f992
commit 56a04209b8

View file

@ -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
####################################################