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

80 lines
2.6 KiB
Text
Raw Normal View History

2016-01-20 12:20:03 +01:00
#!/bin/bash
2022-02-23 23:37:24 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
2022-02-23 23:37:24 +01:00
2023-03-05 10:00:57 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2022-02-23 23:37:24 +01:00
2023-03-05 10:00:57 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
2022-02-23 23:37:24 +01:00
#=================================================
# CHECK VERSION
#=================================================
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2022-02-23 23:37:24 +01:00
# Backup the current version of the app
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2022-02-23 23:37:24 +01:00
ynh_clean_check_starting
# Restore it if the upgrade fails
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_restore_upgradebackup
2022-02-23 23:37:24 +01:00
}
# Exit if an error occurs during the execution of the script
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_abort_if_errors
2022-02-23 23:37:24 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..."
# Cleaning legacy permissions
2023-03-05 10:00:57 +01:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2022-02-23 23:37:24 +01:00
ynh_app_setting_delete --app=$app --key=is_public
2016-01-20 12:20:03 +01:00
fi
2022-02-23 23:37:24 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..."
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..."
2022-02-23 23:37:24 +01:00
2023-03-05 10:00:57 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2022-02-23 23:37:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed"