1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/leed_ynh.git synced 2024-09-03 19:26:32 +02:00
leed_ynh/scripts/upgrade

69 lines
2.4 KiB
Text
Raw Normal View History

2014-08-17 17:52:31 +02:00
#!/bin/bash
2014-08-18 22:05:31 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
2021-05-16 16:15:54 +02:00
# GENERIC START
2017-03-01 19:37:00 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-15 23:56:35 +02:00
2017-03-19 23:03:07 +01:00
source _common.sh
2016-12-14 16:08:29 +01:00
source /usr/share/yunohost/helpers
2021-05-16 16:15:54 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2017-03-01 19:37:00 +01:00
#=================================================
2019-01-19 12:13:45 +01:00
# ENSURE DOWNWARD COMPATIBILITY
2017-03-01 19:37:00 +01:00
#=================================================
2022-10-20 00:14:07 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2014-08-18 22:05:31 +02:00
2020-03-19 18:29:28 +01:00
# If fpm_footprint doesn't exist, create it
if [ -z "$fpm_footprint" ]; then
fpm_footprint=low
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_usage doesn't exist, create it
if [ -z "$fpm_usage" ]; then
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
2019-01-30 19:26:05 +01:00
fi
2017-03-01 19:37:00 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-01-16 21:35:46 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2014-08-18 22:05:31 +02:00
2024-01-16 21:35:46 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
2015-11-22 14:37:01 +01:00
2024-01-16 21:35:46 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2017-03-01 19:37:00 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2017-03-01 19:37:00 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2015-11-22 14:37:01 +01:00
2024-01-16 21:35:46 +01:00
ynh_add_fpm_config --usage="$fpm_usage" --footprint="$fpm_footprint"
2017-03-01 19:37:00 +01:00
2024-01-16 21:35:46 +01:00
ynh_add_nginx_config
2017-12-11 20:37:45 +01:00
2021-05-16 16:15:54 +02:00
# Create a dedicated Fail2Ban config
2019-01-19 12:00:42 +01:00
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="PHP message: Leed: wrong login for .* client: <HOST>" --max_retry=5
2017-12-11 20:37:45 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
# SETUP APPLICATION WITH CURL
2019-01-21 13:09:35 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
ynh_script_progression --message="Finalizing upgrade..."
2019-01-21 13:09:35 +01:00
2024-01-16 21:35:46 +01:00
ynh_local_curl "/"
2019-01-30 19:26:05 +01:00
2024-01-16 21:35:46 +01:00
code_sync=$(mysql -h localhost -u $db_user -p$db_pwd -s $db_name -e 'SELECT value FROM leed_configuration WHERE `key`="synchronisationCode"' | sed -n 1p)
ynh_add_config --template="../conf/cron_leed" --destination="/etc/cron.d/$app"
2019-01-21 13:09:35 +01:00
2019-01-30 16:15:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last