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

126 lines
3.7 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-05 21:08:32 +01:00
source ../settings/scripts/_common.sh
source ../settings/scripts/_future.sh
2019-02-05 17:38:12 +01:00
source ../settings/scripts/ynh_systemd_action
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2019-02-05 22:10:12 +01:00
ynh_clean_setup () {
#### Remove this function if there's nothing to clean before calling the remove script.
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
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)
is_public=$(ynh_app_setting_get $app is_public)
final_path=$(ynh_app_setting_get $app final_path)
db_name=$(ynh_app_setting_get $app db_name)
port=$(ynh_app_setting_get $app final_path)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
ynh_webpath_available $domain $path_url \
|| ynh_die "Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die "There is already a directory: $final_path "
#=================================================
# STANDARD RESTORE STEPS
#=================================================
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
#=================================================
ynh_restore_file "$final_path"
#=================================================
2019-02-05 22:10:12 +01:00
# RECREATE THE DEDICATED USER
#=================================================
2019-02-05 22:10:12 +01:00
# Create the dedicated user (if not existing)
ynh_system_user_create $app "$final_path"
2019-02-05 22:10:12 +01:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
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
#=================================================
2019-02-05 22:10:12 +01:00
# REINSTALL DEPENDENCIES
#=================================================
2019-02-05 22:10:12 +01:00
# Define and install dependencies
2019-02-05 17:44:15 +01:00
ynh_install_nodejs 8.9.3
# Install mongodb
ynh_install_app_dependencies "mongodb mongodb-server"
#=================================================
2019-02-05 22:10:12 +01:00
# RESTORE THE MONGODB DATABASE
#=================================================
2019-02-05 22:10:12 +01:00
# Start mogodb
systemctl enable mongodb
systemctl start mongodb
2019-02-05 22:11:04 +01:00
mongorestore --db $db_name ./dump/$db_name
#=================================================
2019-02-05 22:10:12 +01:00
# RESTORE SYSTEMD
#=================================================
2019-02-05 22:10:12 +01:00
ynh_restore_file "/etc/systemd/system/$app.service"
systemctl enable $app.service
#=================================================
2019-02-05 22:10:12 +01:00
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
yunohost service add mongodb --log "/var/log/mongodb/mongodb.log"
2017-11-09 12:13:38 +01:00
yunohost service add $app
2019-02-05 22:10:12 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
systemctl reload nginx
#=================================================
# START SERVICE
#=================================================
ynh_systemd_action --action=start --service_name=$app --log_path="systemd"
sleep 10