2017-09-13 14:49:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-04 08:23:50 +01:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-03-10 08:20:59 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-09-13 14:49:10 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=4
|
2017-09-13 14:49:10 +02:00
|
|
|
|
2024-01-17 14:07:41 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2022-03-04 08:23:50 +01:00
|
|
|
|
2024-01-17 14:07:41 +01:00
|
|
|
touch "$install_dir/local_settings.py"
|
|
|
|
ln -sf "$install_dir/local_settings.py" "$install_dir/venv/lib/$weblate_pypath/site-packages/weblate/local_settings.py"
|
2021-05-04 21:12:52 +02:00
|
|
|
|
2024-01-17 14:07:41 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app: "$install_dir"
|
|
|
|
chown $app:www-data "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir/data"
|
2020-10-28 12:02:15 +01:00
|
|
|
|
2017-09-22 09:05:28 +02:00
|
|
|
#=================================================
|
2022-07-13 00:48:56 +02:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2017-09-22 09:05:28 +02:00
|
|
|
#=================================================
|
2024-01-18 14:16:32 +01:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=5
|
2017-09-22 09:05:28 +02:00
|
|
|
|
2020-10-28 12:02:15 +01:00
|
|
|
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
|
2017-09-14 14:35:53 +02:00
|
|
|
|
2022-07-13 02:11:01 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL XXHASH
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing xxHash..."
|
|
|
|
|
|
|
|
tempdir="$(mktemp -d)"
|
|
|
|
ynh_setup_source --dest_dir=$tempdir --source_id="libxxhash"
|
|
|
|
pushd $tempdir
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
popd
|
|
|
|
ynh_secure_remove --file="$tempdir"
|
|
|
|
|
2022-03-04 08:23:50 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE VARIOUS FILES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring various files..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/uwsgi/apps-available/$app.ini"
|
|
|
|
|
2017-11-21 15:31:11 +01:00
|
|
|
#=================================================
|
2020-10-28 12:02:15 +01:00
|
|
|
# RESTORE SYSTEMD
|
2017-11-21 15:31:11 +01:00
|
|
|
#=================================================
|
2021-06-28 18:24:51 +02:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=4
|
2017-11-21 15:31:11 +01:00
|
|
|
|
2020-10-28 12:02:15 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2020-12-13 18:47:45 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2020-10-28 12:02:15 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-celery.service"
|
2020-12-13 18:47:45 +01:00
|
|
|
systemctl enable "$app-celery" --quiet
|
2019-03-10 21:57:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
2019-03-10 21:57:52 +01:00
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
ynh_script_progression --message="Restoring the logrotate configuration..."
|
2019-03-10 21:57:52 +01:00
|
|
|
|
2022-03-04 08:23:50 +01:00
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2018-10-25 08:01:46 +02:00
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
2020-10-28 12:02:15 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
2021-06-28 18:24:51 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
|
2017-09-13 14:49:10 +02:00
|
|
|
|
2022-03-04 08:23:50 +01:00
|
|
|
yunohost service add $app --log="/var/log/$app/weblate.log"
|
2024-01-19 14:30:13 +01:00
|
|
|
yunohost service add "$app-celery" --log="/var/log/$app/weblate-celery-w1.log"
|
2017-12-29 08:43:56 +01:00
|
|
|
|
2019-08-23 08:32:02 +02:00
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
# START SYSTEMD SERVICE
|
2019-08-23 08:32:02 +02:00
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=5
|
2019-08-23 08:32:02 +02:00
|
|
|
|
2022-03-04 08:23:50 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/weblate.log" --line_match="spawned uWSGI"
|
2024-01-19 08:27:45 +01:00
|
|
|
ynh_systemd_action --service_name="$app-celery" --action="start" --log_path="/var/log/$app/weblate-celery-w1.log" --line_match="mingle: all alone"
|
2019-08-23 08:32:02 +02:00
|
|
|
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2019-05-30 20:51:22 +02:00
|
|
|
# RELOAD NGINX
|
2017-09-13 14:49:10 +02:00
|
|
|
#=================================================
|
2021-06-28 18:24:51 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2017-09-13 14:49:10 +02:00
|
|
|
|
2022-03-04 08:23:50 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-05-30 20:51:22 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2022-03-04 08:23:50 +01:00
|
|
|
|
2020-05-01 22:55:31 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|