2017-10-02 02:07:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2019-02-05 21:08:32 +01:00
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
2019-02-05 17:38:12 +01:00
|
|
|
source ../settings/scripts/ynh_systemd_action
|
2017-10-02 02:07:41 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Loading settings..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
2018-02-26 12:47:15 +01:00
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
2017-10-02 02:07:41 +02:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2019-02-05 21:57:12 +01:00
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Validating restoration parameters..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 19:53:27 +01:00
|
|
|
ynh_webpath_available $domain $path_url \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path_url}"
|
2017-10-02 02:07:41 +02:00
|
|
|
test ! -d $final_path \
|
2019-02-05 19:53:27 +01:00
|
|
|
|| ynh_die "There is already a directory: $final_path "
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
# STANDARD RESTORATION STEPS
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-05 22:10:12 +01:00
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Restoring the app main directory..."
|
2019-02-05 22:10:12 +01:00
|
|
|
|
|
|
|
ynh_restore_file "$final_path"
|
|
|
|
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-05 22:10:12 +01:00
|
|
|
# RECREATE THE DEDICATED USER
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Recreating the dedicated system user..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 22:10:12 +01:00
|
|
|
# Create the dedicated user (if not existing)
|
2017-10-02 02:07:41 +02:00
|
|
|
ynh_system_user_create $app "$final_path"
|
|
|
|
|
2019-02-05 22:10:12 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 22:10:12 +01:00
|
|
|
# Restore permissions on app files
|
|
|
|
chown -R $app: "$final_path"
|
|
|
|
chmod -R 640 "$final_path"
|
|
|
|
find "$final_path" -type d -print0 | xargs -0 chmod 750
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-05 22:10:12 +01:00
|
|
|
# REINSTALL DEPENDENCIES
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Reinstalling dependencies..."
|
2019-02-05 22:10:12 +01:00
|
|
|
|
|
|
|
# Define and install dependencies
|
2019-03-06 20:26:15 +01:00
|
|
|
ynh_install_nodejs 8.15.1
|
2019-03-07 18:05:44 +01:00
|
|
|
ynh_use_nodejs
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-03-14 01:04:59 +01:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-05 22:10:12 +01:00
|
|
|
# RESTORE THE MONGODB DATABASE
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Restoring the MongoDB database..."
|
2019-02-05 22:10:12 +01:00
|
|
|
|
2019-03-15 19:29:38 +01:00
|
|
|
# Start mongodb
|
2018-07-01 19:04:35 +02:00
|
|
|
systemctl enable mongodb
|
|
|
|
systemctl start mongodb
|
2019-02-05 22:11:04 +01:00
|
|
|
mongorestore --db $db_name ./dump/$db_name
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-05 22:10:12 +01:00
|
|
|
# RESTORE SYSTEMD
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Restoring the systemd configuration..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 22:10:12 +01:00
|
|
|
ynh_restore_file "/etc/systemd/system/$app.service"
|
2019-03-08 00:46:02 +01:00
|
|
|
systemctl daemon-reload
|
2019-02-05 22:10:12 +01:00
|
|
|
systemctl enable $app.service
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-02-05 22:10:12 +01:00
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
|
|
|
|
2018-07-01 19:04:35 +02:00
|
|
|
yunohost service add mongodb --log "/var/log/mongodb/mongodb.log"
|
2017-11-09 12:13:38 +01:00
|
|
|
yunohost service add $app
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 22:10:12 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-02-20 17:45:11 +01:00
|
|
|
ynh_print_info "Reloading nginx web server..."
|
2019-02-05 17:41:18 +01:00
|
|
|
|
2017-10-02 02:07:41 +02:00
|
|
|
systemctl reload nginx
|
2019-02-05 17:41:18 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SERVICE
|
|
|
|
#=================================================
|
2019-03-08 00:46:02 +01:00
|
|
|
ynh_print_info "Now starting Wekan service..."
|
2019-02-05 17:41:18 +01:00
|
|
|
|
2019-03-07 17:59:51 +01:00
|
|
|
ynh_systemd_action --action=start --service_name=$app --log_path="systemd" --line_match="Kadira: completed instrumenting the app"
|
2019-03-07 21:26:59 +01:00
|
|
|
sleep 10
|
2019-02-20 17:45:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info "Restoration completed for $app"
|