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

150 lines
5.3 KiB
Text
Raw Normal View History

2021-05-21 14:13:08 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=2
2021-05-21 14:13:08 +02:00
2023-04-07 13:22:55 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2021-05-21 14:13:08 +02:00
2023-04-07 13:22:55 +02:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2021-05-21 14:13:08 +02:00
#=================================================
# CHECK VERSION
#=================================================
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up $app before upgrading (may take a while)..." --weight=4
# Backup the current version of the app
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2021-05-21 14:13:08 +02:00
# restore it if the upgrade fails
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_restore_upgradebackup
2021-05-21 14:13:08 +02:00
}
# Exit if an error occurs during the execution of the script
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_abort_if_errors
2021-05-21 14:13:08 +02:00
2021-10-04 17:59:17 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
# Cleaning legacy permissions
2023-04-07 13:22:55 +02:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2021-10-04 17:59:17 +02:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-05-21 14:13:08 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action=stop --log_path=systemd
2021-05-21 14:26:31 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-05-21 14:26:31 +02:00
# Create a dedicated user (if not existing)
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2021-05-21 14:26:31 +02:00
2021-05-21 14:13:08 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=5
# Download, check integrity, uncompress and patch the source from app.src
2023-04-07 13:22:55 +02:00
ynh_setup_source --dest_dir=$install_dir --source_id=$YNH_ARCH --keep="$app.conf"
2021-05-21 14:13:08 +02:00
fi
2023-04-07 13:22:55 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chmod +x "$install_dir/miniflux"
chown -R $app:www-data "$install_dir"
2021-05-21 14:28:04 +02:00
2021-05-21 14:13:08 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=10
2021-05-21 14:13:08 +02:00
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2021-05-21 14:13:08 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=2
ynh_add_systemd_config
#=================================================
2021-11-16 20:34:36 +01:00
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
2021-05-21 14:13:08 +02:00
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
yunohost service add $app --description="Minimalist feed reader" --log="/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="Listening on"
#=================================================
# RELOAD NGINX
#=================================================
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-05-21 14:13:08 +02:00
2023-04-07 13:22:55 +02:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2021-05-21 14:13:08 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last