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

134 lines
4.1 KiB
Text
Raw Normal View History

2017-04-21 12:54:39 +02:00
#!/bin/bash
2019-02-03 01:04:22 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-04-21 12:54:39 +02:00
2019-02-03 01:04:22 +01:00
source ../settings/scripts/_common.sh
2017-04-21 12:54:39 +02:00
source /usr/share/yunohost/helpers
2019-02-03 01:04:22 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2019-02-18 11:47:25 +01:00
ynh_clean_check_starting
2019-02-03 01:04:22 +01:00
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Loading settings..."
2019-02-03 01:04:22 +01:00
2017-04-21 12:54:39 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
2019-02-03 01:04:22 +01:00
path_url=$(ynh_app_setting_get $app path)
final_path=$(ynh_app_setting_get $app final_path)
db_name=$(ynh_app_setting_get $app db_name)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Validating restoration parameters..."
2019-02-03 01:04:22 +01:00
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 RESTORATION STEPS
2019-02-03 21:39:45 +01:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Reinstalling dependencies..."
2019-02-03 21:39:45 +01:00
# Define and install dependencies
2019-02-21 00:36:05 +01:00
ynh_install_app_dependencies build-essential libssl-dev zlib1g-dev libpng-dev libpq-dev memcached postgresql cpanminus
2019-02-19 00:35:56 +01:00
# Install Carton
2019-02-21 00:36:05 +01:00
echo yes | cpanm Carton
2019-02-03 21:39:45 +01:00
2019-02-03 01:04:22 +01:00
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Restoring the app main directory..."
2019-02-03 01:04:22 +01:00
ynh_restore_file "$final_path"
#=================================================
2019-02-21 12:49:49 +01:00
# RECREATE THE DEDICATED USER
2019-02-03 01:04:22 +01:00
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Recreating the dedicated system user..."
# Create the dedicated user (if not existing)
ynh_system_user_create $app
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
ynh_print_info "Restoring the PostregSQL database..."
2019-02-03 01:04:22 +01:00
db_pwd=$(ynh_app_setting_get $app psqlpwd)
2019-02-04 00:51:23 +01:00
ynh_psql_test_if_first_run
2019-02-03 01:04:22 +01:00
ynh_psql_setup_db $db_name $db_name $db_pwd
2019-02-04 00:51:23 +01:00
ynh_psql_connect_as $db_name $db_pwd $db_name < ./db.sql
2019-02-03 01:04:22 +01:00
2019-02-21 12:49:49 +01:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Restore permissions on app files
2019-03-03 20:45:02 +01:00
chown -R $app:$app "$final_path"
2019-02-21 12:49:49 +01:00
2019-02-03 01:04:22 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# RESTORE SYSTEMD
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Restoring the systemd configuration..."
2019-02-03 01:04:22 +01:00
ynh_restore_file "/etc/systemd/system/$app.service"
systemctl enable $app.service
2019-02-03 21:24:02 +01:00
ynh_systemd_action -n $app -a start -l "Server available at" -p "systemd"
2019-02-03 01:04:22 +01:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
2019-02-15 09:27:04 +01:00
yunohost service add $app --log "/var/log/$app.log" --log "/var/www/$app/log/production.log"
2019-02-03 01:04:22 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_restore_file "/etc/logrotate.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2019-02-21 12:49:49 +01:00
ynh_print_info "Reloading nginx web server..."
2019-02-03 01:04:22 +01:00
systemctl reload nginx
yunohost app ssowatconf
2019-02-21 12:49:49 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Restoration completed for $app"