2017-07-18 13:38:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
2017-07-21 12:11:26 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2021-06-30 19:06:52 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2021-06-30 18:34:32 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-07-21 12:11:26 +02:00
|
|
|
|
2017-07-18 13:38:42 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2023-02-16 10:07:14 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2017-07-18 13:38:42 +02:00
|
|
|
|
2023-02-16 10:07:14 +01:00
|
|
|
db_user=$db_name
|
|
|
|
mongo_version=$(ynh_app_setting_get --app=$app --key=mongo_version)
|
2017-07-21 14:35:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-07-01 07:59:58 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2017-07-18 13:38:42 +02:00
|
|
|
#=================================================
|
2021-07-01 07:59:58 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2017-07-18 13:38:42 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2017-09-04 22:24:56 +02:00
|
|
|
|
2023-02-16 09:55:28 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2017-09-04 22:24:56 +02:00
|
|
|
|
2017-07-18 13:38:42 +02:00
|
|
|
#=================================================
|
2021-06-30 17:01:55 +02:00
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-02-16 10:07:14 +01:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=40
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
# Define and install dependencies
|
2021-07-01 07:59:58 +02:00
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2022-07-26 21:08:00 +02:00
|
|
|
ynh_exec_warn_less ynh_install_mongo --mongo_version=$mongo_version
|
2022-06-26 20:30:44 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2021-07-01 07:59:58 +02:00
|
|
|
# RESTORE THE MONGODB DATABASE
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Restoring the MongoDB database..." --weight=10
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2023-02-16 10:07:14 +01:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
2021-07-01 07:59:58 +02:00
|
|
|
ynh_mongo_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
|
|
|
|
ynh_mongo_restore_db --database="$db_name" < ./dump.bson
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2021-11-17 23:37:02 +01:00
|
|
|
#=================================================
|
2022-06-26 20:30:44 +02:00
|
|
|
# CONFIGURE MONGOD
|
2021-11-17 23:37:02 +01:00
|
|
|
#=================================================
|
2022-10-01 19:11:02 +02:00
|
|
|
ynh_script_progression --message="Configuring mongod..." --weight=7
|
2021-11-17 23:37:02 +01:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_replace_string --match_string="# engine:" --replace_string=" engine: wiredTiger" --target_file="/etc/mongod.conf"
|
|
|
|
ynh_replace_string --match_string="#replication:" --replace_string="replication:\n replSetName: rs01" --target_file="/etc/mongod.conf"
|
2021-11-17 23:37:02 +01:00
|
|
|
|
2022-07-12 09:33:07 +02:00
|
|
|
ynh_exec_warn_less systemctl enable mongod --quiet
|
|
|
|
ynh_systemd_action --service_name=mongod --action=restart --log_path=/var/log/mongodb/mongod.log --line_match="Waiting for connections"
|
2021-11-17 23:37:02 +01:00
|
|
|
|
2022-06-28 22:52:55 +02:00
|
|
|
if ynh_exec_warn_less ynh_mongo_exec --command="printjson(rs.status())" | grep -q "no replset config has been received"; then
|
|
|
|
ynh_exec_warn_less ynh_mongo_exec --command="printjson(rs.initiate())" --eval
|
|
|
|
fi
|
2022-06-27 02:49:41 +02:00
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2021-06-30 17:01:55 +02:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2023-03-30 16:05:39 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
|
|
|
|
2021-11-13 23:17:56 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2023-08-27 07:48:19 +02:00
|
|
|
yunohost service add $app --description="Team collaboration communication platform" --log="/var/log/$app/$app.log"
|
2021-06-30 17:01:55 +02:00
|
|
|
|
2021-11-18 10:55:35 +01:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
|
2021-11-18 10:55:35 +01:00
|
|
|
#=================================================
|
2023-08-27 07:48:19 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
|
2021-11-18 10:55:35 +01:00
|
|
|
|
2022-06-26 20:30:44 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="SERVER RUNNING"
|
2021-06-30 17:01:55 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2017-07-21 14:35:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-06-30 17:01:55 +02:00
|
|
|
# END OF SCRIPT
|
2017-07-21 14:35:08 +02:00
|
|
|
#=================================================
|
|
|
|
|
2021-06-30 17:01:55 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|