1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/backdrop_ynh.git synced 2024-09-03 20:36:14 +02:00
backdrop_ynh/scripts/upgrade

52 lines
1.5 KiB
Text
Raw Normal View History

2020-10-18 11:06:07 +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)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-07-21 21:50:52 +02:00
ynh_script_progression --message="Reconfiguring $app..." --weight=2
2020-10-18 11:06:07 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-15 22:38:37 +01:00
ynh_setup_source --dest_dir="$install_dir" --keep="settings.php"
2020-10-18 11:06:07 +02:00
fi
2021-05-27 08:40:12 +02:00
# Set permissions to app files
2023-03-15 22:38:37 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-27 08:40:12 +02:00
2021-04-23 11:25:08 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
# Create a dedicated PHP-FPM config
2023-08-19 18:55:34 +02:00
ynh_add_fpm_config --usage=low --footprint=low
2021-04-23 11:25:08 +02:00
2022-08-15 08:26:17 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2020-10-18 11:06:07 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-21 21:50:52 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last