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

123 lines
4.1 KiB
Text
Raw Normal View History

2014-07-20 18:10:20 +02:00
#!/bin/bash
2015-10-23 16:24:30 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-10-19 12:13:47 +02:00
source /usr/share/yunohost/helpers
2019-05-06 20:34:37 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2022-10-19 00:46:33 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2019-02-15 19:49:22 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2023-01-12 17:26:58 +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_free_footprint doesn't exist, create it
if [ -z "$fpm_free_footprint" ]; then
fpm_free_footprint=0
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_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
fi
2021-03-16 07:26:45 +01:00
2022-01-03 17:52:10 +01:00
# Create a permission if needed
2023-03-06 13:24:53 +01:00
#REMOVEME? if ! ynh_permission_exists --permission="ics"; then
#REMOVEME? ynh_permission_create --permission="ics" --url="/?controller=ICalendarController" --allowed="visitors" --label="ICS Public access"
2023-03-06 13:29:34 +01:00
#fi
2021-06-07 23:50:22 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2014-11-23 20:45:36 +01:00
2019-05-06 20:34:37 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=3
# Download, check integrity, uncompress and patch the source from app.src
2023-03-06 13:24:53 +01:00
ynh_setup_source --dest_dir="$install_dir" --keep="data/ config.php"
2019-05-06 20:34:37 +02:00
fi
2023-03-06 13:24:53 +01:00
mkdir -p $install_dir/sessions/
2023-03-06 13:24:53 +01:00
chown -R $app $install_dir/{data,plugins,sessions}
chmod -R 700 $install_dir/sessions
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-06-07 23:50:22 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=5
2020-10-30 15:08:59 +01:00
# Create a dedicated PHP-FPM config
2023-01-12 17:26:58 +01:00
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
2023-03-06 13:24:53 +01:00
#REMOVEME? phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2018-03-08 18:33:25 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2020-10-30 15:08:59 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2022-10-19 00:46:33 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2019-02-15 19:49:22 +01:00
# UPGRADE KANBOARD
#=================================================
2022-06-06 16:13:41 +02:00
ynh_script_progression --message="Upgrading the app..." --weight=2
2014-07-20 18:10:20 +02:00
2023-03-06 13:24:53 +01:00
pushd $install_dir
2019-02-15 19:49:22 +01:00
# Launch database migration
2021-02-26 12:26:48 +01:00
php$phpversion cli db:migrate --no-interaction --verbose
2019-02-15 19:49:22 +01:00
# Launch plugins migration
2021-02-26 12:26:48 +01:00
php$phpversion cli plugin:upgrade --no-interaction --verbose
popd
2020-10-30 15:08:59 +01:00
#=================================================
# SETUP CRON
#=================================================
2022-06-06 12:36:32 +02:00
ynh_script_progression --message="Setuping a cron..." --weight=2
2021-02-26 12:26:48 +01:00
2022-06-06 12:36:32 +02:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2020-10-30 15:08:59 +01:00
2022-10-19 00:46:33 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# UPGRADE FAIL2BAN
#=================================================
ynh_script_progression --message="Reconfiguring Fail2Ban..." --weight=7
# Create a dedicated Fail2Ban config
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="^.*authentication failure\" while reading response header from upstream, client: <HOST>,.*$" --max_retry=5
#=================================================
2019-02-17 20:55:37 +01:00
# END OF SCRIPT
#=================================================
2022-10-19 00:46:33 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last