1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00

Fix recursive chmod

This commit is contained in:
yalh76 2021-04-17 18:31:58 +02:00
parent ed96881283
commit b5475a003c
3 changed files with 6 additions and 6 deletions

View file

@ -130,7 +130,7 @@ ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
chmod -R 750 "$final_path"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
@ -152,7 +152,7 @@ ynh_script_progression --message="Creating the data directory..."
# Create app folders
mkdir -p "$datadir"
chmod -R 750 "$datadir"
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:$app "$datadir"

View file

@ -71,7 +71,7 @@ ynh_script_progression --message="Restoring the app main directory..."
ynh_restore_file --origin_path="$final_path"
chmod -R 750 "$final_path"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
@ -87,7 +87,7 @@ ynh_restore_file --origin_path="$datadir" --not_mandatory
mkdir -p "$datadir"
chmod -R 750 "$datadir"
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:$app "$datadir"

View file

@ -169,7 +169,7 @@ then
ynh_secure_remove --file="$tmpdir"
fi
chmod -R 750 "$final_path"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
@ -216,7 +216,7 @@ ynh_script_progression --message="Creating the data directory..."
# Create app folders
mkdir -p "$datadir"
chmod -R 750 "$datadir"
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:$app "$datadir"