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

109 lines
3.4 KiB
Text
Raw 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
#=================================================
# LOAD SETTINGS
#=================================================
2022-10-16 21:36:48 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
2019-05-06 13:40:41 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2021-09-09 23:53:24 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=5
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-10-16 21:36:48 +02:00
# Restore it if the upgrade fails
2021-09-09 23:53:24 +02:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2022-10-16 21:36:48 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2020-03-30 14:00:17 +02:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2021-03-18 19:12:14 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
2020-03-30 14:49:05 +02:00
ynh_app_setting_delete --app=$app --key=is_public
fi
#=================================================
2021-09-09 23:53:24 +02:00
# CREATE DEDICATED USER
#=================================================
2021-09-09 23:53:24 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-09-09 23:53:24 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
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="$final_path"
2019-05-06 13:40:41 +02:00
fi
2021-09-09 23:53:24 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# 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
2022-10-16 21:36:48 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2020-12-06 12:36:06 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-05-06 13:40:41 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 20:54:53 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last