mirror of
https://github.com/YunoHost-Apps/hotspot_ynh.git
synced 2024-09-03 19:25:53 +02:00
Fix permissions in restore
This commit is contained in:
parent
79956b5f46
commit
3663173000
1 changed files with 4 additions and 1 deletions
|
@ -97,7 +97,10 @@ ynh_system_user_create --username=$app
|
||||||
ynh_script_progression --message="Restoring user rights..."
|
ynh_script_progression --message="Restoring user rights..."
|
||||||
|
|
||||||
# Restore permissions on app files
|
# Restore permissions on app files
|
||||||
chown -R $app: $final_path
|
chown -R $app:$app ${final_path}/
|
||||||
|
chmod -R 0644 ${final_path}/*
|
||||||
|
find ${final_path}/ -type d -exec chmod +x {} \;
|
||||||
|
chmod o-rwx ${final_path}
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RESTORE THE PHP-FPM CONFIGURATION
|
# RESTORE THE PHP-FPM CONFIGURATION
|
||||||
|
|
Loading…
Add table
Reference in a new issue