2019-06-30 19:52:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-23 03:07:00 +01:00
|
|
|
source _common.sh
|
2019-06-30 19:52:29 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2022-03-23 03:07:00 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
2024-05-07 07:13:54 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2024-05-07 07:13:54 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-07-10 09:10:58 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="config files marketplace plugins"
|
2022-03-23 03:07:00 +01:00
|
|
|
|
2023-09-26 09:41:46 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-07-10 09:07:29 +02:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPDATE THE DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating the database..." --weight=1
|
|
|
|
|
|
|
|
pushd "$install_dir"
|
|
|
|
"php$phpversion" bin/console system:check_requirements
|
|
|
|
"php$phpversion" bin/console db:update --no-interaction --no-telemetry --force
|
|
|
|
popd
|
2019-06-30 19:52:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-09-26 10:29:33 +02:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
2023-09-26 10:29:33 +02:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2022-03-23 03:07:00 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
2022-10-05 22:36:43 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2024-05-07 07:13:54 +02:00
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
2023-09-26 10:29:33 +02:00
|
|
|
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-10-05 22:36:43 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|