2017-04-24 04:16:02 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-02 16:58:08 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
2018-02-02 16:58:08 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-09-27 23:22:02 +02:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2017-04-24 04:16:02 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
|
|
|
|
#=================================================
|
2020-09-27 23:22:02 +02:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-09-29 11:57:53 +02:00
|
|
|
ynh_print_info --message="Backing up the main app directory..."
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2019-06-27 22:44:38 +02:00
|
|
|
ynh_backup --src_path="$final_path"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-29 11:57:53 +02:00
|
|
|
ynh_print_info --message="Backing up nginx web server configuration..."
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-29 11:57:53 +02:00
|
|
|
ynh_print_info --message="Backing up php-fpm configuration..."
|
2019-06-16 00:06:51 +02:00
|
|
|
|
2020-09-28 16:56:29 +02:00
|
|
|
ynh_backup --src_path="/etc/php/$YNH_PHP_VERSION/fpm/pool.d/$app.conf"
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
2020-09-29 11:57:53 +02:00
|
|
|
ynh_print_info --message="Backing up logrotate configuration..."
|
2019-06-16 00:06:51 +02:00
|
|
|
|
|
|
|
ynh_backup --src_path="/etc/logrotate.d/$app"
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2020-09-27 23:22:02 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backing up the MySQL database..."
|
|
|
|
|
|
|
|
ynh_mysql_dump_db --database="$db_name" > db.sql
|
|
|
|
|
2019-06-16 00:06:51 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-04-24 04:16:02 +02:00
|
|
|
|
2020-09-27 23:22:02 +02:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|