2015-04-06 17:46:57 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-07-18 20:47:14 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-05-08 17:37:47 +02:00
|
|
|
|
2020-07-18 20:47:14 +02:00
|
|
|
source _common.sh
|
2017-04-30 15:45:50 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-07-18 20:47:14 +02:00
|
|
|
#=================================================
|
2024-01-17 11:37:40 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2021-07-03 09:14:32 +02:00
|
|
|
#=================================================
|
2024-01-17 11:37:40 +01:00
|
|
|
ynh_script_progression --message="Backing up configuration file..." --weight=5
|
2021-07-03 09:14:32 +02:00
|
|
|
|
2024-01-17 11:37:40 +01:00
|
|
|
# Save setup.ini
|
|
|
|
ynh_backup_if_checksum_is_different --file="$install_dir/conf/setup.ini"
|
2021-07-03 09:14:32 +02:00
|
|
|
|
2020-07-18 20:47:14 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-01-17 11:37:40 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=5
|
2015-04-06 17:46:57 +02:00
|
|
|
|
2024-01-17 11:37:40 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
|
2017-04-30 15:45:50 +02:00
|
|
|
|
2024-01-17 11:37:40 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2017-04-30 15:45:50 +02:00
|
|
|
|
2024-01-17 11:37:40 +01:00
|
|
|
ynh_store_file_checksum --file="$install_dir/conf/setup.ini"
|
2021-07-03 09:14:32 +02:00
|
|
|
|
2020-07-18 20:47:14 +02:00
|
|
|
#=================================================
|
2024-01-17 11:37:40 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2020-07-18 20:47:14 +02:00
|
|
|
#=================================================
|
2024-01-17 11:37:40 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2020-07-18 20:47:14 +02:00
|
|
|
|
2020-09-25 16:21:33 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2020-07-25 07:27:37 +02:00
|
|
|
ynh_add_fpm_config
|
2020-07-18 20:47:14 +02:00
|
|
|
|
2022-10-01 08:52:00 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-07-18 20:47:14 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2022-10-01 08:52:00 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|