1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wekan_ynh.git synced 2024-09-03 20:36:09 +02:00
wekan_ynh/scripts/restore

79 lines
2.6 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-05 21:08:32 +01:00
2021-04-08 20:49:54 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-02-05 21:08:32 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2019-02-05 22:10:12 +01:00
#=================================================
2021-04-08 20:49:54 +02:00
# RESTORE THE APP MAIN DIR
2019-02-05 22:10:12 +01:00
#=================================================
2021-04-08 20:49:54 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2023-03-23 08:54:45 +01:00
ynh_restore_file --origin_path="$install_dir"
2023-03-23 08:54:45 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2019-02-05 22:10:12 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
2019-02-05 22:10:12 +01:00
# REINSTALL DEPENDENCIES
#=================================================
2023-03-23 08:54:45 +01:00
#REMOVEME? ynh_script_progression --message="Reinstalling dependencies..."
2019-02-05 22:10:12 +01:00
# Define and install dependencies
2022-06-08 23:52:20 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
2019-03-07 18:05:44 +01:00
ynh_use_nodejs
2022-07-25 23:35:39 +02:00
ynh_install_mongo --mongo_version=$mongo_version
#=================================================
2019-02-05 22:10:12 +01:00
# RESTORE THE MONGODB DATABASE
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Restoring the MongoDB database..."
2019-02-05 22:10:12 +01:00
2020-06-15 05:00:50 +02:00
ynh_mongo_restore_db --database="$db_name" < ./dump.bson
#=================================================
2023-09-14 14:19:44 +02:00
# RESTORE THE NGINX CONFIGURATION
#=================================================
2023-09-14 14:19:44 +02:00
ynh_script_progression --message="Restoring the NGINX web server configuration..."
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-07-10 00:03:59 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2021-02-25 23:53:02 +01:00
yunohost service add $app --description="Wekan daemon"
2019-02-05 22:10:12 +01:00
#=================================================
2019-07-10 00:03:59 +02:00
# START SYSTEMD SERVICE
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-12-29 23:56:39 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started Wekan, task board"
2020-06-15 04:15:42 +02:00
2019-12-29 23:56:39 +01:00
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
sleep 60
fi
#=================================================
2019-07-10 00:03:59 +02:00
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2021-04-08 20:49:54 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-07-10 00:03:59 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-20 17:45:11 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Restoration completed for $app"