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

65 lines
2.4 KiB
Text
Raw Normal View History

2023-02-26 22:48:57 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2023-03-02 15:27:11 +01:00
ynh_systemd_action --service_name=$app --action="stop"
2023-02-26 22:48:57 +01:00
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD, ETC...)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2023-03-02 15:27:11 +01:00
chown -R $app: "$install_dir"
2023-02-26 22:48:57 +01:00
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
# This should be a literal copypasta of what happened in the install's "System configuration" section
ynh_add_nginx_config
ynh_add_systemd_config
2023-03-02 15:27:11 +01:00
yunohost service add $app --description="qBittorrent-nox service" --log="$install_dir/.local/share/data/qBittorrent/logs/qbittorrent.log"
2023-02-26 22:48:57 +01:00
#=================================================
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS, ...)
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2023-03-02 15:27:11 +01:00
#ynh_add_config --template="some_config_file" --destination="$install_dir/some_config_file"
2023-02-26 22:48:57 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2023-03-03 02:21:48 +01:00
ynh_systemd_action --service_name=$app --action=start --line_match="Web UI: Now listening on IP: \*, port: $port" --log_path="$install_dir/.local/share/data/qBittorrent/logs/qbittorrent.log" --timeout=60
2023-02-26 22:48:57 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last