1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mongo-express_ynh.git synced 2024-09-03 19:46:04 +02:00
mongo-express_ynh/scripts/restore

78 lines
2.8 KiB
Text
Raw Normal View History

2022-12-16 11:02:52 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source ../settings/scripts/ynh_mongo_db__2
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2024-01-13 11:03:57 +01:00
ynh_restore_file --origin_path="$install_dir"
2022-12-16 11:02:52 +01:00
2024-01-13 11:03:57 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2022-12-16 11:02:52 +01:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2024-01-13 11:03:57 +01:00
ynh_script_progression --message="Reinstalling NodeJS..." --weight=3
2022-12-16 11:02:52 +01:00
2024-01-13 11:03:57 +01:00
ynh_install_nodejs --nodejs_version="$nodejs_version"
2022-12-16 11:02:52 +01:00
ynh_use_nodejs
2024-01-13 11:03:57 +01:00
2022-12-16 11:02:52 +01:00
# Install mongo server only if asked to
2024-01-13 11:03:57 +01:00
if [ "$mongo_version" != "None" ]; then
ynh_script_progression --message="Reinstalling MongoDB..." --weight=3
ynh_install_mongo --mongo_version="$mongo_version"
2022-12-31 12:27:38 +01:00
else
2024-01-13 11:03:57 +01:00
# gives the mongo service name for the rest of installation
mongodb_servicename=mongod
2022-12-16 11:02:52 +01:00
fi
#=================================================
2024-01-13 11:03:57 +01:00
# RESTORE SYSTEM CONFIGURATIONS
2022-12-16 11:02:52 +01:00
#=================================================
2024-01-13 11:03:57 +01:00
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
2022-12-16 11:02:52 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2024-01-13 11:03:57 +01:00
systemctl enable "$app.service" --quiet
yunohost service add "$app" --description="Mongo Express to easily administer your Mongo databases" --log="/var/log/$app/$app.log"
2022-12-16 11:02:52 +01:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2024-01-13 11:03:57 +01:00
mkdir --parents "/var/log/$app"
chown "$app:adm" "/var/log/$app"
2022-12-16 11:02:52 +01:00
#=================================================
2024-01-13 11:03:57 +01:00
# DONT RESTORE THE MONGO DATABASE
2022-12-16 11:02:52 +01:00
#=================================================
2024-01-13 11:03:57 +01:00
ynh_print_warn --message="This application is NOT restoring Mongo Database!"
2022-12-16 11:02:52 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2024-01-13 11:03:57 +01:00
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2022-12-16 11:02:52 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last