1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flood_ynh.git synced 2024-09-03 18:36:20 +02:00

Merge pull request #4 from YunoHost-Apps/fix_restore

Fix restore
This commit is contained in:
yalh76 2022-03-24 22:36:37 +01:00 committed by GitHub
commit 0ad2f8e589
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,6 +94,25 @@ ynh_script_progression --message="Reinstalling dependencies..."
# Define and install dependencies # Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies ynh_install_app_dependencies $pkg_dependencies
#=================================================
# REINSTALL FLOOD
#=================================================
ynh_script_progression --message="Reinstalling flood..."
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --source_id=$YNH_ARCH
dpkg -i $final_path/flood-linux.deb
ynh_secure_remove --file="$final_path/flood-linux.deb"
#=================================================
# OPEN A PORT
#=================================================
ynh_script_progression --message="Finding an available port..."
# Open the port
ynh_script_progression --message="Configuring firewall..."
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $rt_port
#================================================= #=================================================
# RESTORE SYSTEMD # RESTORE SYSTEMD
#================================================= #=================================================
@ -117,7 +136,6 @@ yunohost service add $app-rtorrent --needs_exposed_ports $rt_port
#================================================= #=================================================
ynh_script_progression --message="Starting a systemd service..." ynh_script_progression --message="Starting a systemd service..."
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" ynh_systemd_action --service_name=$app --action="start"
ynh_systemd_action --service_name=$app-rtorrent --action="start" ynh_systemd_action --service_name=$app-rtorrent --action="start"