1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/scripts/backup

78 lines
2.6 KiB
Text
Raw Normal View History

2018-11-25 13:39:54 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-04-13 15:37:56 +02:00
#if [ ! -e _common.sh ]; then
# # Get the _common.sh file if it's not in the current directory
# cp ../settings/scripts/_common.sh ./_common.sh
# chmod a+rx _common.sh
#fi
source ../settings/scripts/_common.sh
2018-11-25 13:39:54 +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
#=================================================
# LOAD SETTINGS
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Loading installation settings..."
2018-11-25 13:39:54 +01: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
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Backing up the main app directory..."
2018-11-25 13:39:54 +01:00
2019-05-21 13:37:11 +02:00
ynh_backup --src_path="$final_path"
2018-11-25 13:39:54 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Backing up nginx web server configuration..."
2018-11-25 13:39:54 +01:00
2019-05-21 13:37:11 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-11-25 13:39:54 +01:00
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Backing up the MySQL database..."
2018-11-25 13:39:54 +01:00
ynh_mysql_dump_db "$db_name" > db.sql
#=================================================
# BACKUP THE CRON FILE
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Backing up cron configuration..."
2019-05-21 13:37:11 +02:00
ynh_backup --src_path="/etc/cron.d/$app"
2018-11-25 13:39:54 +01:00
2019-05-21 13:49:14 +02:00
#=================================================
# BACKUP postfix conf
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Backing up postfix conf configuration..."
2019-05-21 13:49:14 +02:00
ynh_backup "/usr/share/yunohost/hooks/conf_regen/98-postfix_emailpoubelle"
2018-11-25 14:33:45 +01:00
#=================================================
2019-05-21 13:37:11 +02:00
# END OF SCRIPT
2018-11-25 14:33:45 +01:00
#=================================================
2020-11-01 16:49:03 +01:00
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last