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

37 lines
1.1 KiB
Text
Raw Normal View History

2017-03-25 18:31:20 +01:00
#!/bin/bash
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2017-03-25 18:31:20 +01:00
#=================================================
2021-06-06 09:07:27 +02:00
# RESTORE THE APP MAIN DIR
2017-03-25 18:31:20 +01:00
#=================================================
ynh_script_progression "Restoring the app main directory..."
2022-01-16 22:18:44 +01:00
ynh_restore "$install_dir"
2017-03-25 18:31:20 +01:00
#=================================================
2022-04-08 17:30:08 +02:00
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression "Reconfiguring PHP-FPM..."
2022-04-08 17:30:08 +02:00
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
2022-04-08 17:30:08 +02:00
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2022-04-08 17:30:08 +02:00
ynh_mysql_db_shell < ./db.sql
2017-03-25 18:31:20 +01:00
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
ynh_script_progression "Reloading NGINX web server and PHP-FPM..."
ynh_systemctl --service=php$php_version-fpm --action=reload
ynh_systemctl --service=nginx --action=reload
2017-03-25 18:31:20 +01:00
#=================================================
# END OF SCRIPT
2017-03-25 18:31:20 +01:00
#=================================================
ynh_script_progression "Restoration completed for $app"