2014-11-04 08:47:50 +00:00
|
|
|
#!/bin/bash
|
2015-10-27 15:03:21 +00:00
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# GENERIC START
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-11-04 08:47:50 +00:00
|
|
|
|
2018-07-16 22:02:52 +00:00
|
|
|
source ../settings/scripts/_common.sh
|
2016-06-14 12:11:00 +00:00
|
|
|
source /usr/share/yunohost/helpers
|
2014-11-04 08:47:50 +00:00
|
|
|
|
2017-09-05 15:48:23 +00:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2018-06-28 20:05:35 +00:00
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
2017-09-05 15:48:23 +00:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Loading installation settings..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# BACKUP THE APP MAIN DIR
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Backing up the main app directory..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2017-08-28 21:55:51 +00:00
|
|
|
ynh_backup "$final_path"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Backing up nginx configuration..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2017-08-28 21:55:51 +00:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Backing up php-fpm configuration..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2019-01-29 23:32:36 +00:00
|
|
|
ynh_backup "/etc/php/7.0/fpm/pool.d/$app.conf"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
2017-06-17 21:19:48 +00:00
|
|
|
# BACKUP THE MYSQL DATABASE
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Backing up the mysql database..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
ynh_mysql_dump_db "$db_name" > db.sql
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Backing up logrotate configuration..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2017-08-28 21:55:51 +00:00
|
|
|
ynh_backup "/etc/logrotate.d/$app"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP SYSTEMD
|
|
|
|
#=================================================
|
2019-02-13 17:40:20 +00:00
|
|
|
ynh_print_info "Backing up systemd configuration..."
|
2017-06-02 16:28:20 +00:00
|
|
|
|
2017-08-28 21:55:51 +00:00
|
|
|
ynh_backup "/etc/systemd/system/$app.service"
|
2017-06-02 16:28:20 +00:00
|
|
|
|
|
|
|
#=================================================
|
2018-06-28 20:05:35 +00:00
|
|
|
# BACKUP A CRON FILE
|
2017-06-02 16:28:20 +00:00
|
|
|
#=================================================
|
|
|
|
|
2017-08-28 21:55:51 +00:00
|
|
|
ynh_backup "/etc/cron.d/$app"
|
2019-02-10 14:02:38 +00:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-13 17:45:47 +00:00
|
|
|
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|