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

Fix upgrade after rework

This commit is contained in:
Salamandar 2024-01-27 16:33:10 +01:00
parent 3885b0e7cd
commit 5881149ff0

View file

@ -9,6 +9,16 @@
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# Cleanup previous package that ynh_setup_source on install_dir
if [ ! -d "$install_dir/www" ]; then
ynh_secure_remove "$install_dir"/* "$install_dir"/.*
fi
#=================================================
# INSTALL DEPENDENCIES
#=================================================
@ -49,12 +59,12 @@ ynh_secure_remove "$install_dir/source"
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
ynh_add_config --template="config.example.js" --destination="$install_dir/www/public/config/config.js"
ynh_add_config --template="config.example.js" --destination="$install_dir/www/config/config.js"
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
chmod 400 "$install_dir/www/public/config/config.js"
chmod 400 "$install_dir/www/config/config.js"
#=================================================
# NGINX CONFIGURATION