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

146 lines
4.8 KiB
Text
Raw Normal View History

2021-05-21 14:24:10 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Loading installation settings..."
2021-05-21 14:24:10 +02:00
app=$YNH_APP_INSTANCE_NAME
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)
2021-11-22 09:40:20 +01:00
architecture=$YNH_ARCH
2021-05-21 14:24:10 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2021-05-21 14:24:10 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# 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
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Stopping a systemd service..."
2021-05-21 14:24:10 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2021-05-21 14:24:10 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
# Create a permission if needed
if ! ynh_permission_exists --permission="api"; then
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true"
fi
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2021-05-21 14:24:10 +02: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
2021-05-25 23:28:22 +02:00
ynh_script_progression --message="Upgrading source files..."
2021-05-21 14:24:10 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2021-11-22 09:40:20 +01:00
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture"
2021-05-21 14:24:10 +02:00
fi
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
2021-05-22 21:59:07 +02:00
chmod -R $app: "$final_path"
2021-05-21 14:24:10 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2021-05-21 14:24:10 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SETUP SYSTEMD
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Upgrading systemd configuration..."
2021-05-21 14:24:10 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..."
2021-05-21 14:24:10 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2021-05-21 14:24:10 +02:00
2021-05-21 15:15:32 +02:00
yunohost service add $app --description="API support for torrent trackers" --log="/var/log/$app/$app.log"
2021-05-21 14:24:10 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Starting a systemd service..."
2021-05-21 14:24:10 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# RELOAD NGINX
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2021-05-21 14:24:10 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --time --last