2017-01-08 12:17:57 +01:00
|
|
|
#!/bin/bash
|
2017-07-03 21:07:56 +02:00
|
|
|
# to test the functionnality :
|
2019-11-18 15:48:14 +01:00
|
|
|
# yunohost backup create -n "bozon-test" --apps bozon
|
2017-07-03 21:07:56 +02:00
|
|
|
# yunohost backup delete bozon-test
|
2016-03-23 19:30:43 +01:00
|
|
|
|
2020-01-05 19:49:24 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
2016-10-13 06:51:38 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-23 21:40:55 +02:00
|
|
|
|
2020-01-05 19:49:24 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2017-07-03 21:07:56 +02:00
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2020-01-05 19:49:24 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
2016-10-13 06:51:38 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2020-01-05 19:49:24 +01:00
|
|
|
domain=$(ynh_app_setting_get --app="$app" --key=domain)
|
|
|
|
final_path=$(ynh_app_setting_get --app="$app" --key=final_path)
|
|
|
|
data_path=$(ynh_app_setting_get --app="$app" --key=data_path)
|
2016-04-04 20:01:54 +02:00
|
|
|
|
2020-01-05 19:49:24 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up the main app directory..." --time --weight=1
|
2017-07-03 21:07:56 +02:00
|
|
|
if [ -e "$final_path" ]; then
|
|
|
|
myynh_check_disk_space "$final_path"
|
2020-01-05 19:49:24 +01:00
|
|
|
ynh_backup --src_path="$final_path"
|
2017-07-03 21:07:56 +02:00
|
|
|
fi
|
2020-01-05 19:49:24 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up nginx web server configuration..." --time --weight=1
|
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up php-fpm configuration..." --time --weight=1
|
|
|
|
ynh_backup --src_path="/etc/php/7.0/fpm/pool.d/$app.conf"
|
2016-03-23 19:30:43 +01:00
|
|
|
|
2020-01-05 19:49:24 +01:00
|
|
|
##=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Backing up data directory..."
|
2017-07-03 21:07:56 +02:00
|
|
|
if [ -e "$data_path" ]; then
|
|
|
|
backup_core_only=$(ynh_app_setting_get "$app" backup_core_only)
|
|
|
|
if [ $backup_core_only -eq 0 ]; then
|
|
|
|
myynh_check_disk_space "$data_path"
|
2020-01-05 19:49:24 +01:00
|
|
|
ynh_backup --src_path="$data_path" --is_big
|
2017-07-03 21:07:56 +02:00
|
|
|
else
|
|
|
|
echo "Data dir will not be saved, because backup_core_only is set to true." >&2
|
|
|
|
fi
|
|
|
|
fi
|