2016-05-14 10:06:20 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2019-05-01 13:24:56 +02:00
|
|
|
# GENERIC START
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2019-05-01 13:24:56 +02:00
|
|
|
# IMPORT GENERIC HELPERS
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
|
|
|
|
2022-07-03 20:36:04 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-05-01 13:24:56 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-14 10:06:20 +02:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2022-07-03 20:36:04 +02:00
|
|
|
# RESTORE THE DATA DIRECTORY
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2022-07-03 20:36:04 +02:00
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
2017-06-13 23:37:51 +02:00
|
|
|
|
2023-09-28 12:25:27 +02:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2016-05-14 10:06:20 +02:00
|
|
|
|
2023-12-06 13:24:50 +01:00
|
|
|
chmod -R 775 $data_dir
|
2023-09-28 12:25:27 +02:00
|
|
|
chmod -R 775 $data_dir/watched
|
|
|
|
chown -R debian-transmission:www-data "$data_dir"
|
|
|
|
chown -R debian-transmission: $data_dir/{progress,watched}
|
2016-05-14 10:06:20 +02:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2022-07-03 20:36:04 +02:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2022-07-03 20:36:04 +02:00
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE VARIOUS FILES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring various files..." --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
|
|
|
|
2023-12-06 11:24:08 +01:00
|
|
|
ynh_secure_remove --file="$SETTINGS_FILE"
|
|
|
|
ynh_restore_file --origin_path="$SETTINGS_FILE"
|
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_restore_file --origin_path="/etc/sysctl.d/90-transmission.conf"
|
|
|
|
sysctl --load=/etc/sysctl.d/90-transmission.conf
|
2019-05-09 11:44:17 +02:00
|
|
|
fi
|
2019-05-09 11:07:57 +02:00
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
ynh_secure_remove --file=/usr/share/transmission
|
|
|
|
ynh_restore_file --origin_path=/usr/share/transmission
|
2017-06-16 20:38:31 +02:00
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
ynh_secure_remove --file=/var/lib/transmission-daemon
|
|
|
|
ynh_restore_file --origin_path=/var/lib/transmission-daemon
|
|
|
|
|
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=4
|
2017-06-13 23:37:51 +02:00
|
|
|
|
2017-06-18 15:57:00 +02:00
|
|
|
ynh_multimedia_build_main_dir
|
2023-09-28 12:25:27 +02:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
# Set rights on transmission directory (parent need to be readable by other, and progress need to be writable by multimedia. Because files will move)
|
2023-09-28 12:25:27 +02:00
|
|
|
ynh_multimedia_addfolder --source_dir="$data_dir" --dest_dir="share/Torrents"
|
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
# And share completed directory
|
2023-09-28 12:25:27 +02:00
|
|
|
ynh_multimedia_addfolder --source_dir="$data_dir/completed" --dest_dir="share/Torrents"
|
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
# Share also watched directory, to allow to use it easily
|
2023-09-28 12:25:27 +02:00
|
|
|
ynh_multimedia_addfolder --source_dir="$data_dir/watched" --dest_dir="share/Torrent to download"
|
2017-06-13 23:37:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-03 20:36:04 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2019-05-01 13:24:56 +02:00
|
|
|
#=================================================
|
2023-10-04 08:35:00 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2019-05-01 13:24:56 +02:00
|
|
|
|
2023-10-04 08:35:00 +02:00
|
|
|
yunohost service add transmission-daemon --description="BitTorrent Client" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port_peer"
|
2016-05-14 10:06:20 +02:00
|
|
|
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2019-05-01 13:24:56 +02:00
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2023-10-04 08:35:00 +02:00
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2017-06-13 23:37:51 +02:00
|
|
|
#=================================================
|
2023-10-04 08:35:00 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=transmission-daemon --action=start --log_path="systemd"
|
2017-06-13 23:37:51 +02:00
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2016-05-14 10:06:20 +02:00
|
|
|
|
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
|
|
|
#=================================================
|
2016-05-14 10:06:20 +02:00
|
|
|
|
2019-05-01 13:24:56 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|