1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/omeka-s_ynh.git synced 2024-09-03 19:56:05 +02:00
omeka-s_ynh/scripts/upgrade

66 lines
2.1 KiB
Text
Raw Normal View History

2021-07-25 13:44:34 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2023-02-17 21:18:00 +01:00
upgrade_type=$(ynh_check_app_version_changed)
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
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src
2023-02-17 19:17:32 +01:00
ynh_setup_source --dest_dir="$install_dir" --keep="config/local.config.php config/database.ini modules themes files"
2022-05-20 18:45:41 +02:00
2021-07-25 13:44:34 +02:00
fi
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
2021-12-08 19:39:51 +01:00
ynh_add_fpm_config --phpversion=$phpversion --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