1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/scripts/restore

61 lines
2.2 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2022-02-26 20:24:27 +01:00
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-06-04 22:57:21 +02:00
#=================================================
2022-02-26 20:24:27 +01:00
# RESTORE THE APP MAIN DIR
2018-06-04 22:57:21 +02:00
#=================================================
2022-02-27 11:23:56 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=3
2022-02-26 20:24:27 +01:00
2023-03-05 12:42:46 +01:00
ynh_restore_file --origin_path="$install_dir"
2018-06-04 22:57:21 +02:00
2023-03-05 12:42:46 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2018-06-04 22:57:21 +02:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2020-10-09 12:39:26 +02:00
ynh_script_progression --message="Reconfiguring PHP-FPM..." --weight=10
2018-06-04 22:57:21 +02:00
2020-09-25 19:26:57 +02:00
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
2018-06-09 13:29:14 +02:00
2020-10-09 13:51:09 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
2023-03-05 12:50:26 +01:00
ynh_script_progression --message="Restoring the MySQL database..." --weight=5
2020-10-09 13:51:09 +02:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2020-10-09 12:39:26 +02:00
2018-06-04 22:57:21 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2020-10-09 12:39:26 +02:00
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..." --weight=1
2020-09-25 19:26:57 +02:00
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2018-06-04 22:57:21 +02:00
2022-02-26 20:24:27 +01:00
ynh_script_progression --message="Restoration completed for $app" --last