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

64 lines
2.2 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
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-02-25 21:56:47 +01: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
#=================================================
2024-02-25 21:56:47 +01:00
# ynh_script_progression --message="Ensuring downward compatibility..."
2021-05-21 14:24:10 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-02-25 21:56:47 +01:00
ynh_script_progression --message="Upgrading source files..."
2021-05-21 14:24:10 +02:00
2024-02-25 21:56:47 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2024-02-25 22:46:00 +01:00
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep=".config"
2021-05-21 14:24:10 +02:00
2024-02-25 21:56:47 +01:00
chmod -R o-rwx "$install_dir"
2024-03-11 21:33:55 +01:00
chown -R "$app:" "$install_dir"
2021-05-21 14:24:10 +02:00
2024-02-25 22:46:00 +01:00
_set_BasePathOverride
2021-05-21 14:24:10 +02:00
#=================================================
2024-02-25 21:56:47 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2021-05-21 14:24:10 +02:00
#=================================================
2024-02-25 21:56:47 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2021-05-21 14:24:10 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config
ynh_add_systemd_config
2024-02-25 21:56:47 +01: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
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-02-25 21:56:47 +01:00
ynh_script_progression --message="Starting $app's systemd service..."
2021-05-21 14:24:10 +02:00
2024-02-25 21:56:47 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2021-05-21 14:24:10 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2023-01-12 10:20:00 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last