2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2015-10-10 21:28:09 +02:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2020-11-05 20:47:23 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
2020-11-05 20:47:23 +01:00
|
|
|
then
|
2020-11-05 20:59:46 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=4
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-11-10 12:48:25 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2014-10-20 18:55:53 +02:00
|
|
|
fi
|
|
|
|
|
2023-11-10 12:48:25 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-10-01 23:47:11 +02:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-11-05 20:47:23 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-05 23:06:11 +01:00
|
|
|
ynh_script_progression --message="Upgrade of Laverna completed" --last
|