2024-02-21 16:50:15 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-04-21 16:34:44 +02:00
|
|
|
# reinstall couchdb
|
2024-02-21 16:50:15 +01:00
|
|
|
ynh_script_progression --message="Reinstalling couchdb..." --weight=40
|
2024-05-10 09:15:22 +02:00
|
|
|
flohmarkt_ynh_up_inst_couchdb
|
2024-02-21 16:50:15 +01:00
|
|
|
|
2024-04-21 13:07:00 +02:00
|
|
|
# add couchdb configuration
|
2024-05-14 14:13:41 +02:00
|
|
|
if ![[ -e /opt/couchdb/etc/local.d/05-flohmarkt.ini ]]; then
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=2
|
|
|
|
|
|
|
|
flohmarkt_ynh_stop_couchdb
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/opt/couchdb/etc/local.d/05-flohmarkt.ini"
|
|
|
|
chown root:couchdb /opt/couchdb/etc/local.d/05-flohmarkt.ini
|
|
|
|
chmod 640 /opt/couchdb/etc/local.d/05-flohmarkt.ini
|
|
|
|
|
|
|
|
ynh_script_progression --message="Starting couchdb..." --weight=4
|
|
|
|
flohmarkt_ynh_start_couchdb
|
|
|
|
else
|
|
|
|
ynh_script_progression --message="CouchDB configuration file already exists." --weight=1
|
|
|
|
fi
|
2024-04-21 13:07:00 +02:00
|
|
|
|
2024-05-14 14:13:41 +02:00
|
|
|
# restore couchdb from json
|
|
|
|
ynh_script_progression --message="Importing couchdb from json backup..." --weight=8
|
|
|
|
flohmarkt_ynh_restore_couchdb
|
2024-02-21 16:50:15 +01:00
|
|
|
|
2024-04-21 16:23:59 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=10
|
2024-05-08 16:14:04 +02:00
|
|
|
ynh_restore_file --origin_path="$flohmarkt_install"
|
2024-04-21 16:23:59 +02:00
|
|
|
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
ynh_script_progression --message="Restoring the data directory..." --weight=1
|
2024-05-08 16:14:04 +02:00
|
|
|
ynh_restore_file --origin_path="$flohmarkt_data_dir=" --not_mandatory
|
2024-04-21 16:23:59 +02:00
|
|
|
mkdir -p $data_dir
|
|
|
|
|
2024-04-25 09:48:43 +02:00
|
|
|
# restore logfiles
|
|
|
|
# independent of the question whether one wants the logfiles in a backup (as you can
|
|
|
|
# see I decided I wanted them for the time being) it is important to create the log
|
|
|
|
# directory and file so that the systemd.service can redirect STDOUT to the file.
|
|
|
|
# If the logfile(or maybe just -directory?) is missing the service will not start
|
|
|
|
# on a fresh install, because directory and/or file do not exist.
|
|
|
|
ynh_script_progression --message="Restoring log directory and logfiles..." --weight=1
|
2024-05-06 07:47:13 +02:00
|
|
|
ynh_restore_file --origin_path="$flohmarkt_log_dir" --not_mandatory
|
|
|
|
mkdir -p -m755 "$flohmarkt_log_dir"
|
|
|
|
touch "$flohmarkt_logfile"
|
2024-04-25 09:48:43 +02:00
|
|
|
# logfile contains possibly the secret setup URL
|
2024-05-06 07:47:13 +02:00
|
|
|
chmod 640 "$flohmarkt_logfile"
|
2024-04-25 09:48:43 +02:00
|
|
|
|
2024-04-21 16:23:59 +02:00
|
|
|
# RESTORE FAIL2BAN CONFIGURATION
|
|
|
|
ynh_script_progression --message="Restoring the Fail2Ban configuration..." --weight=2
|
2024-05-08 16:14:04 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
|
2024-04-21 16:23:59 +02:00
|
|
|
ynh_systemd_action --action=restart --service_name=fail2ban
|
|
|
|
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2024-02-21 16:50:15 +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"
|
|
|
|
|
2024-04-24 21:00:40 +02:00
|
|
|
# restore flohmarkt systemd service and integrate service into yunohost
|
|
|
|
ynh_script_progression --message="Restoring flohmarkt.service and integrating service into YunoHost..." --weight=1
|
2024-05-06 07:47:13 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$flohmarkt_filename.service"
|
2024-05-08 16:14:04 +02:00
|
|
|
ynh_systemd_action --action=enable --service_name=$flohmarkt_filename
|
2024-05-10 10:21:52 +02:00
|
|
|
yunohost service add $flohmarkt_filename --description="A decentral federated small advertisement platform" --log="$flohmarkt_logfile"
|
2024-05-08 16:14:04 +02:00
|
|
|
flohmarkt_ynh_start_service
|
2024-04-24 09:19:30 +02:00
|
|
|
|
|
|
|
# RELOAD NGINX
|
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
2024-02-21 16:50:15 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|