1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hextris_ynh.git synced 2024-09-03 19:16:05 +02:00
hextris_ynh/scripts/upgrade

46 lines
1.3 KiB
Text
Raw Permalink Normal View History

2014-08-18 18:37:19 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-08-18 18:37:19 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2019-05-06 13:40:41 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
2020-05-28 02:23:15 +02:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
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
ynh_setup_source --dest_dir="$install_dir"
2019-05-06 13:40:41 +02:00
fi
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-09 23:53:24 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-12-06 12:36:06 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2020-12-06 12:36:06 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-02-17 20:54:53 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last