2019-06-06 06:04:22 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-06-09 01:19:53 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-06-06 06:04:22 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_script_progression --message="Reconfiguring the dedicated system user..." --weight=1
|
2019-06-06 06:04:22 +02:00
|
|
|
|
2024-01-18 16:39:14 +01:00
|
|
|
gpasswd --add prosody "$app"
|
|
|
|
gpasswd --add www-data "$app"
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-02-03 03:00:20 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
2022-10-14 03:49:09 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2022-02-03 03:00:20 +01:00
|
|
|
|
2024-01-09 19:10:09 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2019-06-06 06:04:22 +02:00
|
|
|
|
2024-01-09 19:10:09 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-01-18 16:39:14 +01:00
|
|
|
chown -R "$app:$app" "$install_dir"
|
2019-07-14 01:17:46 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-02-03 03:00:20 +01:00
|
|
|
# CONFIGURE PROSODY
|
2019-07-14 01:17:46 +02:00
|
|
|
#=================================================
|
2022-10-14 03:49:09 +02:00
|
|
|
ynh_script_progression --message="Configuring prosody..." --weight=1
|
2022-02-03 03:00:20 +01:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/prosody/conf.avail/$domain.cfg.lua"
|
2022-02-08 22:42:11 +01:00
|
|
|
chmod 644 "/etc/prosody/conf.avail/$domain.cfg.lua"
|
2022-02-03 03:00:20 +01:00
|
|
|
ln -s "/etc/prosody/conf.avail/$domain.cfg.lua" "/etc/prosody/conf.d/$domain.cfg.lua"
|
|
|
|
|
2024-01-18 19:40:03 +01:00
|
|
|
echo | prosodyctl cert generate "$domain"
|
2024-01-18 16:39:14 +01:00
|
|
|
ln -sf "/var/lib/prosody/$domain.key" "/etc/prosody/certs/$domain.key"
|
|
|
|
ln -sf "/var/lib/prosody/$domain.crt" "/etc/prosody/certs/$domain.crt"
|
2022-02-03 03:00:20 +01:00
|
|
|
|
2024-01-18 19:40:03 +01:00
|
|
|
echo | prosodyctl cert generate "auth.$domain"
|
2022-02-03 03:00:20 +01:00
|
|
|
ln -sf "/var/lib/prosody/auth.$domain.key" "/etc/prosody/certs/auth.$domain.key"
|
|
|
|
ln -sf "/var/lib/prosody/auth.$domain.crt" "/etc/prosody/certs/auth.$domain.crt"
|
|
|
|
ln -sf "/var/lib/prosody/auth.$domain.crt" "/usr/local/share/ca-certificates/auth.$domain.crt"
|
2019-07-14 01:17:46 +02:00
|
|
|
|
2022-02-03 03:00:20 +01:00
|
|
|
update-ca-certificates -f
|
2019-07-14 01:17:46 +02:00
|
|
|
|
2022-02-03 03:00:20 +01:00
|
|
|
ynh_systemd_action --service_name="prosody" --action="restart"
|
2019-07-14 01:17:46 +02:00
|
|
|
|
2022-02-03 03:00:20 +01:00
|
|
|
prosodyctl register "$focus_user" "auth.$domain" "$focus_password"
|
|
|
|
prosodyctl register "$videobridge_user" "auth.$domain" "$videobridge_secret"
|
2024-01-18 16:39:14 +01:00
|
|
|
prosodyctl mod_roster_command subscribe "$focus_user.$domain" "$focus_user@auth.$domain"
|
2022-02-08 22:42:11 +01:00
|
|
|
|
2020-04-11 21:55:05 +02:00
|
|
|
#=================================================
|
2024-01-18 16:39:14 +01:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2020-04-11 21:55:05 +02:00
|
|
|
#=================================================
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2020-04-11 21:55:05 +02:00
|
|
|
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2019-06-06 06:04:22 +02:00
|
|
|
|
2019-07-13 14:18:06 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-videobridge.service"
|
2024-01-18 16:39:14 +01:00
|
|
|
systemctl enable "$app-videobridge.service" --quiet
|
|
|
|
yunohost service add "$app-videobridge" --log "/var/log/$app/$app-videobridge.log" --needs_exposed_ports $port $port_videobridge
|
2019-06-06 06:04:22 +02:00
|
|
|
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-jicofo.service"
|
|
|
|
systemctl enable "$app-jicofo.service" --quiet
|
|
|
|
yunohost service add "$app-jicofo" --log "/var/log/$app/$app-jicofo.log"
|
2022-02-03 03:00:20 +01:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
2024-01-18 16:39:14 +01:00
|
|
|
# RESTORE VARIOUS FILES
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/$app/"
|
|
|
|
chmod 644 "/etc/$app/meet/$domain-config.js"
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/var/log/$app/"
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2019-06-06 06:04:22 +02:00
|
|
|
|
2024-01-18 16:39:14 +01:00
|
|
|
ynh_systemd_action --service_name="$app-jicofo" --action="start" --log_path="/var/log/$app/$app-jicofo.log"
|
|
|
|
ynh_systemd_action --service_name="$app-videobridge" --action="start" --log_path="/var/log/$app/$app-videobridge.log"
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-10-14 03:49:09 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|