2018-10-30 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2019-07-01 22:17:06 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2018-10-30 10:25:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-01 22:17:06 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-07-10 18:27:01 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=3
|
2019-07-01 22:57:11 +02:00
|
|
|
|
2023-03-20 22:36:23 +01:00
|
|
|
if [[ ! -f "$install_dir/config/config.ini.php" ]]; then
|
2020-12-17 15:28:55 +01:00
|
|
|
# config.ini.php is only created during the post-install process...
|
|
|
|
# it is therefore not present when the CI tests are carried out...
|
|
|
|
# This condition is only for CI test to go through the upgrade process
|
2023-03-20 22:36:23 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2020-12-17 15:28:55 +01:00
|
|
|
else
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-12-28 10:10:41 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config/config.ini.php" --full_replace=1
|
2021-07-10 18:27:01 +02:00
|
|
|
|
2023-03-20 22:36:23 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
ynh_exec_as $app php${phpversion} $install_dir/console core:update -n
|
2020-12-17 15:28:55 +01:00
|
|
|
fi
|
2019-07-01 22:17:06 +02:00
|
|
|
fi
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2023-12-19 10:45:26 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2023-03-20 22:36:23 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2018-10-30 10:25:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-07-10 18:27:01 +02:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2020-12-17 15:28:55 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-11-02 16:49:27 +01:00
|
|
|
ynh_add_fpm_config
|
2022-06-18 18:16:35 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-11-02 16:49:27 +01:00
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
2021-07-10 18:27:01 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2019-07-01 22:17:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-04-27 14:52:20 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|