2018-10-30 10:25:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Upgrading source files..."
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
if [[ ! -f "$install_dir/config/config.ini.php" ]]; then
|
|
|
|
# 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
|
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
else
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config/config.ini.php" --full_replace
|
|
|
|
ynh_exec_as_app php${php_version} $install_dir/console core:update -n
|
2019-07-01 22:17:06 +02:00
|
|
|
fi
|
2018-10-30 10:25:13 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Upgrading PHP-FPM configuration..."
|
2018-10-30 10:25:13 +01:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_config_add_phpfpm
|
2022-06-18 18:16:35 +02:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_config_add_nginx
|
2022-06-18 18:16:35 +02:00
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_config_add --template="cron" --destination="/etc/cron.d/$app"
|
2019-07-01 22:17:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-09-02 17:02:53 +02:00
|
|
|
ynh_script_progression "Upgrade of $app completed"
|