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
|
|
|
#=================================================
|
2024-01-16 22:40:05 +01:00
|
|
|
# ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2019-01-30 19:26:05 +01:00
|
|
|
|
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 22:40:28 +01:00
|
|
|
chmod 750 "$install_dir"
|
2024-01-16 21:35:46 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-01-16 22:40:28 +01:00
|
|
|
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 23:21:18 +01:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
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 22:40:28 +01:00
|
|
|
code_sync=$(ynh_mysql_execute_as_root --database="$app" --sql='SELECT value FROM leed_configuration WHERE `key`="synchronisationCode"' | sed -n 1p)
|
2024-01-16 21:35:46 +01:00
|
|
|
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
|