2014-08-18 18:37:19 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-08-18 18:37:19 +02:00
|
|
|
|
2020-03-31 15:39:07 +02:00
|
|
|
source _common.sh
|
2017-09-28 18:02:52 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-05-28 02:23:15 +02:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
2014-08-18 18:37:19 +02:00
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2020-05-30 17:51:26 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2019-05-06 13:40:41 +02:00
|
|
|
|
2020-05-28 02:23:15 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-09 10:32:45 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-05-06 13:40:41 +02:00
|
|
|
fi
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2023-06-09 10:32:45 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-09-09 23:53:24 +02:00
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-06 12:36:06 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2020-12-06 12:36:06 +01:00
|
|
|
# Create a dedicated NGINX config
|
2017-09-28 18:02:52 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-02-17 20:54:53 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-30 14:17:05 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|