1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/transmission_ynh.git synced 2024-09-04 01:46:12 +02:00
transmission_ynh/scripts/upgrade

197 lines
7.3 KiB
Text
Raw Normal View History

#!/bin/bash
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
# GENERIC START
2017-06-13 23:37:51 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-01 13:24:56 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=2
app=$YNH_APP_INSTANCE_NAME
2013-10-29 14:26:46 +01:00
2019-05-01 13:24:56 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
port=$(ynh_app_setting_get --app=$app --key=port)
peer_port=$(ynh_app_setting_get --app=$app --key=peer_port)
2022-07-03 20:36:04 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
rpcpassword=$(ynh_app_setting_get --app=$app --key=rpcpassword)
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
# CHECK VERSION
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
ynh_script_progression --message="Checking version..."
2017-06-13 23:37:51 +02:00
2019-05-01 13:24:56 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2022-07-03 20:36:04 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=3
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
ynh_clean_check_starting
# 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..."
ynh_systemd_action --service_name=transmission-daemon --action="stop"
2019-05-01 13:24:56 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=4
if [ -z "$port" ]; then
2017-06-15 00:33:49 +02:00
port=9091
2019-05-01 13:24:56 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
2017-06-13 23:37:51 +02:00
fi
2022-07-03 20:36:04 +02:00
2019-05-01 13:24:56 +02:00
if [ -z "$peer_port" ]; then
2017-06-15 00:33:49 +02:00
peer_port=51413
2019-05-01 13:24:56 +02:00
ynh_app_setting_set --app=$app --key=peer_port --value=$peer_port
2017-06-13 23:37:51 +02:00
fi
2018-03-03 18:53:33 +01:00
# Add peer_port also on UDP.
2019-05-01 13:24:56 +02:00
ynh_exec_warn_less yunohost firewall allow UDP $peer_port
2018-03-03 18:53:33 +01:00
2022-07-03 20:36:04 +02:00
# If datadir doesn't exist, create it
if [ -z "$datadir" ]; then
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
2022-07-04 00:12:52 +02:00
mkdir -p $datadir
2022-07-03 20:36:04 +02:00
mv /home/yunohost.transmission/progress $datadir/progress
mv /home/yunohost.transmission/completed $datadir/completed
mv /home/yunohost.transmission/watched $datadir/watched
ynh_secure_remove --file="/home/yunohost.transmission/"
fi
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
# UPGRADE DEPENDENCIES
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=7
2019-05-01 13:24:56 +02:00
2022-07-03 20:36:04 +02:00
ynh_install_app_dependencies $pkg_dependencies
2013-10-29 14:26:46 +01:00
2017-06-13 23:37:51 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-12-14 11:36:02 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2017-06-13 23:37:51 +02:00
2020-12-14 11:36:02 +01:00
# Create a dedicated NGINX config
2017-08-27 22:01:10 +02:00
ynh_add_nginx_config
2017-06-13 23:37:51 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2022-07-03 20:36:04 +02:00
# CREATE DATA DIRECTORY
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
ynh_script_progression --message="Creating a data directory..."
2013-10-29 14:26:46 +01:00
2022-07-03 20:36:04 +02:00
mkdir -p $datadir/{progress,completed,watched}
2017-06-13 23:37:51 +02:00
2022-07-03 20:36:04 +02:00
chmod -R 764 $datadir
chmod -R 777 $datadir/watched
chown -R debian-transmission:www-data "$datadir"
chown -R debian-transmission: $datadir/{progress,watched}
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
# UPDATE A CONFIG FILE
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
ynh_script_progression --message="Updating a configuration file..." --weight=2
2017-06-13 23:37:51 +02:00
# Transmission has to be stopped before modifying its config
2019-05-01 13:24:56 +02:00
ynh_systemd_action --service_name=transmission-daemon --action=stop
2017-06-13 23:37:51 +02:00
2019-05-01 19:39:41 +02:00
if [ "$path_url" != "/" ]
then
2022-07-03 20:36:04 +02:00
path_less="$path_url/"
2019-05-01 19:39:41 +02:00
else
2022-07-03 20:36:04 +02:00
path_less="$path_url"
2019-05-01 19:39:41 +02:00
fi
2019-05-09 11:07:57 +02:00
2022-07-03 20:36:04 +02:00
ynh_add_config --template="../conf/settings.json" --destination="/etc/transmission-daemon/settings.json"
2019-05-09 11:07:57 +02:00
2022-07-03 20:36:04 +02:00
chmod 400 "/etc/transmission-daemon/settings.json"
chown debian-transmission:debian-transmission "/etc/transmission-daemon/settings.json"
2017-06-13 23:37:51 +02:00
2020-03-03 19:06:26 +01:00
if [ -e /proc/sys/net/core/rmem_max ]
then
2022-07-03 20:36:04 +02:00
ynh_add_config --template="../conf/90-transmission.conf" --destination="/etc/sysctl.d/90-transmission.conf"
chmod 400 "/etc/sysctl.d/90-transmission.conf"
chown debian-transmission:debian-transmission "/etc/sysctl.d/90-transmission.conf"
sysctl --load=/etc/sysctl.d/90-transmission.conf
2020-03-03 19:06:26 +01:00
fi
2017-06-13 23:37:51 +02:00
#=================================================
# YUNOHOST MULTIMEDIA INTEGRATION
#=================================================
2019-05-01 13:24:56 +02:00
ynh_script_progression --message="Adding multimedia directories..." --weight=3
2013-10-29 14:26:46 +01:00
2017-06-18 15:57:00 +02:00
ynh_multimedia_build_main_dir
# Set rights on transmission directory (parent need to be readable by other, and progress need to be writable by multimedia. Because files will move)
2022-07-03 20:36:04 +02:00
ynh_multimedia_addfolder --source_dir="$datadir" --dest_dir="share/Torrents"
# And share completed directory
2022-07-03 20:36:04 +02:00
ynh_multimedia_addfolder --source_dir="$datadir/completed" --dest_dir="share/Torrents"
2017-06-13 23:37:51 +02:00
# Share also watched directory, to allow to use it easily
2022-07-03 20:36:04 +02:00
ynh_multimedia_addfolder --source_dir="$datadir/watched" --dest_dir="share/Torrent to download"
2017-06-13 23:37:51 +02:00
#=================================================
# PATCH SOURCE TO ADD A DOWNLOAD BUTTON
#=================================================
2017-08-27 22:01:10 +02:00
cp ../sources/extra_files/app/toolbar-downloads.png /usr/share/transmission/web/style/transmission/images/toolbar-downloads.png
2017-06-13 23:37:51 +02:00
if ! grep --quiet "Inserted by Yunohost install script" /usr/share/transmission/web/style/transmission/common.css
then
2022-07-03 20:36:04 +02:00
cat ../sources/extra_files/app/ynh_common.css >> /usr/share/transmission/web/style/transmission/common.css
fi
2017-06-13 23:37:51 +02:00
ynh_replace_string "<div id=\"toolbar-inspector\" title=\"Toggle Inspector\"></div>$" "<div id=\"toolbar-inspector\" title=\"Toggle Inspector\"></div><div id=\"toolbar-separator\"></div><a href=\"../../downloads/\" id=\"toolbar-downloads\" title=\"Downloads\" target=\"_blank\"></a>" /usr/share/transmission/web/index.html
2020-12-14 11:36:02 +01:00
#=================================================
2022-07-03 20:36:04 +02:00
# GENERIC FINALIZATION
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2020-12-14 11:36:02 +01:00
#=================================================
2022-07-03 20:36:04 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2020-12-14 11:36:02 +01:00
yunohost service add transmission-daemon --description="BitTorrent Client" --log="/var/log/syslog" --needs_exposed_ports="$peer_port"
2020-12-14 11:36:02 +01:00
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
# START SYSTEMD SERVICE
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=2
2013-10-29 14:26:46 +01:00
2019-05-01 13:24:56 +02:00
ynh_systemd_action --service_name=transmission-daemon --action=start
2014-11-11 17:00:05 +01:00
2017-06-13 23:37:51 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-12-14 11:36:02 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2017-06-13 23:37:51 +02:00
2019-05-01 13:24:56 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
# END OF SCRIPT
2017-06-13 23:37:51 +02:00
#=================================================
2014-11-11 16:55:15 +01:00
2019-05-01 13:24:56 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last