2017-03-11 19:30:03 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-11-26 10:48:51 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2017-03-11 19:30:03 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2021-11-26 10:48:51 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
2017-03-11 19:30:03 +01:00
|
|
|
then
|
2022-01-11 19:45:26 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2021-11-26 10:48:51 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-09-26 23:59:18 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2017-03-11 19:30:03 +01:00
|
|
|
fi
|
|
|
|
|
2023-09-26 23:59:18 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-11-26 10:48:51 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-01-11 19:45:26 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
2021-11-26 10:48:51 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2022-01-11 19:45:26 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
|
2021-11-26 10:48:51 +01:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
2022-03-29 10:08:14 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL SHURI WITH COMPOSER
|
|
|
|
#=================================================
|
2022-03-29 10:27:15 +02:00
|
|
|
ynh_script_progression --message="Installing $app with Composer..." --weight=3
|
2022-03-29 10:08:14 +02:00
|
|
|
|
|
|
|
ynh_install_composer
|
|
|
|
|
2021-11-26 10:48:51 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-01-11 19:45:26 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|