1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/coturn_ynh.git synced 2024-09-03 18:16:32 +02:00

Update restore

This commit is contained in:
Éric Gaspar 2023-12-26 18:09:52 +01:00
parent 502de527fe
commit 7b65f207dd

View file

@ -19,9 +19,12 @@ ynh_restore_file --origin_path="/etc/turnserver.conf"
#================================================= #=================================================
# RESTORE THE COTURN DATAPATH # RESTORE THE COTURN DATAPATH
#================================================= #=================================================
ynh_script_progression --message="Restoring Coturn Datapath..." --weight=1 ynh_script_progression --message="Restoring the data directory..." --weight=1
ynh_restore_file --origin_path="/home/yunohost.app/$app" ynh_restore_file --origin_path="$data_dir" --not_mandatory
# (Same as for install dir)
chown -R $app:www-data "$data_dir"
#================================================= #=================================================
# RESTORE LOG # RESTORE LOG
@ -69,11 +72,6 @@ ynh_script_progression --message="Restoring the systemd configuration..." --weig
ynh_restore_file --origin_path="/etc/systemd/system/$app.service" ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet systemctl enable $app.service --quiet
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="Coturn TURN server" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port_turnserver_tls" yunohost service add $app --description="Coturn TURN server" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port_turnserver_tls"
#================================================= #=================================================