2023-01-05 14:48:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2023-01-11 10:32:49 +01:00
# IMPORT GENERIC HELPERS
#=================================================
2023-01-05 14:48:22 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2023-01-11 10:32:49 +01:00
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
2023-01-05 14:48:22 +01:00
2023-01-11 10:32:49 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2023-01-05 14:48:22 +01:00
2023-01-11 10:32:49 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring $app main directory..." --weight=10
2023-01-05 14:48:22 +01:00
2023-03-10 17:13:54 +01:00
ynh_restore_file --origin_path="$install_dir"
2023-01-05 14:48:22 +01:00
2023-03-10 17:13:54 +01:00
chmod -R o-rwx "$install_dir"
2024-05-04 01:24:34 +02:00
chown -R "$app:$app" "$install_dir"
2023-01-05 14:48:22 +01:00
#=================================================
2023-01-11 10:32:49 +01:00
# RESTORE THE DATA DIRECTORY
2023-01-05 14:48:22 +01:00
#=================================================
2023-01-11 10:32:49 +01:00
ynh_script_progression --message="Restoring the data directory..." --weight=1
2023-03-10 17:13:54 +01:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2024-05-04 01:24:34 +02:00
chown -R "$app:$app" "$data_dir"
2023-01-05 14:48:22 +01:00
2023-08-08 17:16:42 +02:00
#=================================================
# RESTORE THE LOG DIRECTORY
#=================================================
ynh_restore_file --origin_path="/var/log/$app"
2024-05-04 01:24:34 +02:00
chown -R "$app:$app" "/var/log/$app"
2023-08-08 17:16:42 +02:00
chmod u=rwX,g=rX,o= "/var/log/$app"
2023-01-11 10:32:49 +01:00
#=================================================
# RESTORE FAIL2BAN CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the Fail2Ban configuration..." --weight=1
ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
ynh_systemd_action --action=restart --service_name=fail2ban
#=================================================
# RESTORE THE DATABASE
#=================================================
ynh_script_progression --message="Restoring the database..." --weight=6
2024-05-04 01:24:34 +02:00
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
2023-01-11 10:32:49 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..." --weight=5
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2024-05-04 01:24:34 +02:00
systemctl enable "$app.service" --quiet
2023-01-11 10:32:49 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2024-05-04 01:24:34 +02:00
yunohost service add "$app" --description="Forgejo" --log="/var/log/$app/forgejo.log"
2023-01-11 10:32:49 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=3
2024-05-04 01:24:34 +02:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/forgejo.log" --line_match="Starting new Web server: tcp:127.0.0.1:"
2023-01-11 10:32:49 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2023-01-05 14:48:22 +01:00
ynh_script_progression --message="Restoration completed for $app" --last