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/restore

94 lines
3.6 KiB
Text
Raw Normal View History

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
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2016-05-14 10:06:20 +02:00
chmod -R 775 $data_dir
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
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
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
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
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)
ynh_multimedia_addfolder --source_dir="$data_dir" --dest_dir="share/Torrents"
2017-06-13 23:37:51 +02:00
# And share completed directory
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
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
#=================================================
Testing (#104) * Auto-update README * Bullseye (#95) * Upgrade to bullseye * Auto-update README * Auto-update README * Update check_process * Update manifest.json Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update manifest.json * Update upgrade * Auto-update README * Version 2 (#99) * Update install * v2 * Auto-update README * v2 * fix * Auto-update README * Delete updater.sh * fix * fix * Update restore * fix * Update manifest.toml * add sudirs * Update install * cleaning * Update upgrade * Update tests.toml * Update manifest.toml * Update manifest.toml * cleaning * Auto-update README * cleaning * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update manifest.toml * Auto-update README * Update upgrade * Update tests.toml * Fix upgrade script for old versions (#102) We moved from /home/yunohost.transmission to /home/yunohost.app/transmission. Dangling symlinks might exist in the $MEDIA_DIRECTORY... Removing this before ynh_multimedia_build_main_dir will fix this, and the symlinks will be recreated after by ynh_multimedia_addfolder. Also, we're using rm and not ynh_secure_remove because of https://github.com/YunoHost/issues/issues/2253 * Update manifest.toml * Auto-update README * Update remove * Update upgrade * cleaning * Update upgrade * Update install * Update manifest.toml * Update upgrade * Update manifest.toml * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Salamandar <6552989+Salamandar@users.noreply.github.com>
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
Testing (#104) * Auto-update README * Bullseye (#95) * Upgrade to bullseye * Auto-update README * Auto-update README * Update check_process * Update manifest.json Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update manifest.json * Update upgrade * Auto-update README * Version 2 (#99) * Update install * v2 * Auto-update README * v2 * fix * Auto-update README * Delete updater.sh * fix * fix * Update restore * fix * Update manifest.toml * add sudirs * Update install * cleaning * Update upgrade * Update tests.toml * Update manifest.toml * Update manifest.toml * cleaning * Auto-update README * cleaning * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update manifest.toml * Auto-update README * Update upgrade * Update tests.toml * Fix upgrade script for old versions (#102) We moved from /home/yunohost.transmission to /home/yunohost.app/transmission. Dangling symlinks might exist in the $MEDIA_DIRECTORY... Removing this before ynh_multimedia_build_main_dir will fix this, and the symlinks will be recreated after by ynh_multimedia_addfolder. Also, we're using rm and not ynh_secure_remove because of https://github.com/YunoHost/issues/issues/2253 * Update manifest.toml * Auto-update README * Update remove * Update upgrade * cleaning * Update upgrade * Update install * Update manifest.toml * Update upgrade * Update manifest.toml * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Salamandar <6552989+Salamandar@users.noreply.github.com>
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
#=================================================
Testing (#104) * Auto-update README * Bullseye (#95) * Upgrade to bullseye * Auto-update README * Auto-update README * Update check_process * Update manifest.json Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update manifest.json * Update upgrade * Auto-update README * Version 2 (#99) * Update install * v2 * Auto-update README * v2 * fix * Auto-update README * Delete updater.sh * fix * fix * Update restore * fix * Update manifest.toml * add sudirs * Update install * cleaning * Update upgrade * Update tests.toml * Update manifest.toml * Update manifest.toml * cleaning * Auto-update README * cleaning * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update manifest.toml * Auto-update README * Update upgrade * Update tests.toml * Fix upgrade script for old versions (#102) We moved from /home/yunohost.transmission to /home/yunohost.app/transmission. Dangling symlinks might exist in the $MEDIA_DIRECTORY... Removing this before ynh_multimedia_build_main_dir will fix this, and the symlinks will be recreated after by ynh_multimedia_addfolder. Also, we're using rm and not ynh_secure_remove because of https://github.com/YunoHost/issues/issues/2253 * Update manifest.toml * Auto-update README * Update remove * Update upgrade * cleaning * Update upgrade * Update install * Update manifest.toml * Update upgrade * Update manifest.toml * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Salamandar <6552989+Salamandar@users.noreply.github.com>
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
#=================================================
Testing (#104) * Auto-update README * Bullseye (#95) * Upgrade to bullseye * Auto-update README * Auto-update README * Update check_process * Update manifest.json Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update manifest.json * Update upgrade * Auto-update README * Version 2 (#99) * Update install * v2 * Auto-update README * v2 * fix * Auto-update README * Delete updater.sh * fix * fix * Update restore * fix * Update manifest.toml * add sudirs * Update install * cleaning * Update upgrade * Update tests.toml * Update manifest.toml * Update manifest.toml * cleaning * Auto-update README * cleaning * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update manifest.toml * Auto-update README * Update upgrade * Update tests.toml * Fix upgrade script for old versions (#102) We moved from /home/yunohost.transmission to /home/yunohost.app/transmission. Dangling symlinks might exist in the $MEDIA_DIRECTORY... Removing this before ynh_multimedia_build_main_dir will fix this, and the symlinks will be recreated after by ynh_multimedia_addfolder. Also, we're using rm and not ynh_secure_remove because of https://github.com/YunoHost/issues/issues/2253 * Update manifest.toml * Auto-update README * Update remove * Update upgrade * cleaning * Update upgrade * Update install * Update manifest.toml * Update upgrade * Update manifest.toml * Auto-update README --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Salamandar <6552989+Salamandar@users.noreply.github.com>
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