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

141 lines
4.7 KiB
Text
Raw Normal View History

2022-11-02 10:16:52 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2022-11-18 09:48:08 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2022-11-02 10:16:52 +01:00
#=================================================
# CHECK VERSION
#=================================================
2022-11-18 09:48:08 +01:00
ynh_script_progression --message="Checking version..." --weight=1
2022-11-02 10:16:52 +01:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2022-11-18 09:48:08 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=30
2022-11-02 10:16:52 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-11-18 09:48:08 +01:00
ynh_clean_check_starting
2022-11-02 10:16:52 +01:00
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2022-11-18 09:48:08 +01:00
ynh_systemd_action --service_name=$app --action="stop"
2022-11-02 10:16:52 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
#=================================================
# CREATE DEDICATED USER
#=================================================
2022-11-18 09:48:08 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=2
2022-11-02 10:16:52 +01:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src
2022-11-18 09:48:08 +01:00
ynh_setup_source --dest_dir="$final_path" --source_id="$YNH_ARCH"
ynh_secure_remove --file=$final_path/client
ynh_secure_remove --file=$final_path/server
2022-11-02 10:16:52 +01:00
fi
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
2022-11-18 09:48:08 +01:00
chown -R $app:$app "$final_path"
2022-11-02 10:16:52 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-11-18 09:48:08 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2022-11-02 10:16:52 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC UPGRADE
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2022-11-18 09:48:08 +01:00
ynh_add_config --template="server.yml" --destination="$final_path/server.yml"
2022-11-02 10:16:52 +01:00
2022-11-18 09:48:08 +01:00
chmod 400 "$final_path/server.yml"
chown $app:$app "$final_path/server.yml"
2022-11-02 10:16:52 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-11-18 09:48:08 +01:00
yunohost service add $app
2022-11-02 10:16:52 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-11-18 09:48:08 +01:00
ynh_systemd_action --service_name=$app --action="start"
2022-11-02 10:16:52 +01:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-11-18 09:48:08 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last