2021-07-25 13:44:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2021-12-08 19:39:51 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
|
|
|
# If fpm_footprint doesn't exist, create it
|
2023-02-17 19:27:25 +01:00
|
|
|
if [ -z "${fpm_footprint:-}" ]; then
|
2022-10-01 19:36:50 +02:00
|
|
|
fpm_footprint=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_free_footprint doesn't exist, create it
|
2023-02-17 19:27:25 +01:00
|
|
|
if [ -z "${fpm_free_footprint:-}" ]; then
|
2022-10-01 19:36:50 +02:00
|
|
|
fpm_free_footprint=0
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
|
2021-12-08 19:39:51 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
2023-02-17 19:27:25 +01:00
|
|
|
if [ -z "${fpm_usage:-}" ]; then
|
2022-10-01 19:36:50 +02:00
|
|
|
fpm_usage=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
2021-12-08 19:39:51 +01:00
|
|
|
fi
|
|
|
|
|
2021-07-25 13:44:34 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-04-19 17:40:52 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2021-07-25 13:44:34 +02:00
|
|
|
|
2024-04-19 17:40:52 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config/local.config.php config/database.ini modules themes files"
|
2021-07-25 13:44:34 +02:00
|
|
|
|
2023-02-20 16:15:04 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2023-02-17 19:17:32 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-07-25 13:44:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2023-02-17 21:49:01 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2021-07-25 13:44:34 +02:00
|
|
|
|
2023-07-08 21:29:17 +02:00
|
|
|
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
|
2021-07-25 13:44:34 +02:00
|
|
|
|
2022-08-26 23:16:47 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2021-07-25 13:44:34 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|