2020-10-14 12:53:53 +02: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-09-23 07:47:49 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2022-09-23 07:47:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=2
|
2020-10-14 12:53:53 +02:00
|
|
|
|
2020-10-14 13:04:23 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-05 22:53:01 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-10-14 12:53:53 +02:00
|
|
|
fi
|
|
|
|
|
2023-03-05 22:53:01 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-07-05 18:43:59 +02:00
|
|
|
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
2023-04-03 12:46:34 +02:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
2023-04-03 12:46:34 +02:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2020-10-14 12:53:53 +02:00
|
|
|
|
2021-11-22 15:56:04 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-09-20 08:49:29 +02:00
|
|
|
ynh_add_fpm_config
|
2020-10-14 12:53:53 +02:00
|
|
|
|
2022-07-05 18:43:59 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-10-14 12:53:53 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-22 15:56:04 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|