autodeploygit_ynh/scripts/restore

89 lines
3.4 KiB
Plaintext
Raw Permalink Normal View History

2014-11-04 10:47:50 +02:00
#!/bin/bash
2017-06-02 19:37:25 +03:00
#=================================================
2017-06-17 19:10:46 +03:00
# GENERIC START
2017-06-02 19:37:25 +03:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-11-04 10:47:50 +02:00
2020-08-02 17:00:17 +03:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2017-06-02 19:37:25 +03:00
#=================================================
# RESTORE THE APP MAIN DIR
2017-06-02 19:37:25 +03:00
#=================================================
ynh_script_progression --message="Restoring the app main directory..." --weight=1
ynh_restore_file --origin_path="$install_dir"
# $install_dir will automatically be initialized with some decent
2023-09-13 12:25:03 +03:00
# permissions by default ... however, you may need to recursively reapply
# ownership to all files such as after the ynh_setup_source step
chown -R $app:www-data "$install_dir"
2017-06-02 19:37:25 +03:00
2021-04-29 21:58:35 +03:00
#=================================================
# RESTORE THE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Restoring the data directory..." --weight=1
2021-04-29 21:58:35 +03:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2021-04-29 21:58:35 +03:00
# (Same as for install dir)
chown -R $app:www-data "$data_dir"
2022-05-31 02:56:33 +03:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
ynh_script_progression --message="Restoring the MySQL database..." --weight=1
2019-05-02 22:04:03 +03:00
ynh_mysql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2021-04-23 21:00:41 +03:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
2021-04-23 21:00:41 +03:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
2021-04-23 21:00:41 +03:00
# This should be a symetric version of what happens in the install script
2021-04-23 21:00:41 +03:00
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
2021-04-23 21:00:41 +03:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-06-02 19:37:25 +03:00
2019-04-16 01:32:39 +03:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2020-11-27 20:48:03 +03:00
systemctl enable $app.service --quiet
2017-06-02 19:37:25 +03:00
yunohost service add $app --description="A short description of the app" --log="/var/log/$app/$app.log"
2021-08-16 20:29:32 +03:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
ynh_restore_file --origin_path="/etc/fail2ban/jail.d/$app.conf"
ynh_restore_file --origin_path="/etc/fail2ban/filter.d/$app.conf"
ynh_systemd_action --action=restart --service_name=fail2ban
2017-06-02 19:37:25 +03:00
# Other various files...
2019-05-02 21:44:22 +03:00
ynh_restore_file --origin_path="/etc/cron.d/$app"
ynh_restore_file --origin_path="/etc/$app/"
2019-05-02 21:44:22 +03:00
2017-06-02 19:37:25 +03:00
#=================================================
2017-06-17 19:10:46 +03:00
# GENERIC FINALIZATION
2017-06-02 19:37:25 +03:00
#=================================================
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
2017-06-02 19:37:25 +03:00
#=================================================
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
2017-06-02 19:37:25 +03:00
# Typically you only have either $app or php-fpm but not both at the same time...
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2020-02-08 14:39:48 +03:00
ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
2019-04-18 20:58:47 +03:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-10 17:02:38 +03:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last