2014-07-20 18:10:20 +02:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
source _common.sh
|
2017-10-19 12:13:47 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-06-07 11:05:45 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=3
|
2014-11-23 20:45:36 +01:00
|
|
|
|
2024-06-07 11:05:45 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config.php"
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
mkdir -p $install_dir/sessions/
|
2014-10-22 21:21:37 +02:00
|
|
|
|
2023-10-24 09:40:03 +02:00
|
|
|
chown -R $app $install_dir/{plugins,sessions}
|
2023-03-06 13:24:53 +01:00
|
|
|
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
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=5
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2024-06-07 11:11:11 +02:00
|
|
|
ynh_add_fpm_config
|
2018-03-08 18:33:25 +01:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-10-21 22:52:21 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-10-24 09:41:12 +02:00
|
|
|
# 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
|
|
|
|
|
2024-06-07 11:11:11 +02:00
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
2023-10-24 09:41:12 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
|
|
|
|
2024-06-07 11:05:45 +02:00
|
|
|
#dir="__DIR__"
|
|
|
|
#ynh_add_config --template="config.php" --destination="$install_dir/config.php"
|
2023-10-24 09:41:12 +02:00
|
|
|
|
2024-06-07 11:05:45 +02:00
|
|
|
#chmod 400 "$install_dir/config.php"
|
|
|
|
#chown $app "$install_dir/config.php"
|
2023-10-24 09:41:12 +02:00
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# UPGRADE KANBOARD
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
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
|
|
|
|
popd
|
2017-04-01 18:52:48 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
# END OF SCRIPT
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|