2021-03-19 19:47:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2022-03-24 21:01:11 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
|
|
|
|
2021-03-19 19:47:11 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2022-03-24 21:01:11 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2021-03-19 19:47:11 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-11-25 15:13:16 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="/data"
|
2021-03-19 19:47:11 +01:00
|
|
|
fi
|
|
|
|
|
2023-11-25 15:13:16 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app_id:www-data "$install_dir"
|
2022-03-27 00:20:46 +01:00
|
|
|
|
2021-03-19 19:47:11 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-24 21:01:11 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|