2022-02-28 00:31:44 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2022-02-28 03:36:19 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2022-02-28 00:31:44 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-12-28 19:16:22 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-02-28 00:31:44 +01:00
|
|
|
fi
|
|
|
|
|
2023-12-28 19:16:22 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-02-28 00:31:44 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2022-02-28 03:36:19 +01:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
|
2022-02-28 00:31:44 +01:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
2022-06-17 02:05:45 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2022-02-28 00:31:44 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
2022-02-28 03:36:19 +01:00
|
|
|
ynh_script_progression --message="Updating a configuration file..."
|
2022-02-28 00:31:44 +01:00
|
|
|
|
2023-12-28 19:25:35 +01:00
|
|
|
ynh_add_config --template="db_config.php" --destination="$data_dir/data/db_config.php"
|
2022-02-28 00:31:44 +01:00
|
|
|
|
2023-12-28 19:16:22 +01:00
|
|
|
chmod 400 "$data_dir/data/db_config.php"
|
|
|
|
chown $app:$app "$data_dir/data/db_config.php"
|
2022-02-28 00:31:44 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-02-28 03:36:19 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|