2017-01-28 23:39:42 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-24 01:29:14 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2020-04-04 16:21:35 +02:00
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
2017-01-29 16:11:05 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-01-28 23:39:42 +01:00
|
|
|
|
2018-03-24 01:29:14 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
2017-01-28 23:39:42 +01:00
|
|
|
|
2018-03-24 01:29:14 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2020-04-04 03:34:57 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
2018-03-24 01:29:14 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-01-29 16:06:41 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
2017-01-28 23:39:42 +01:00
|
|
|
|
2018-03-24 01:29:14 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-04-04 03:34:57 +02:00
|
|
|
ynh_script_progression --message="Backing up the main app directory..." --time --weight=1
|
2018-03-24 01:29:14 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
ynh_backup --src_path="$final_path"
|
2018-03-24 01:29:14 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-04-04 09:02:04 +02:00
|
|
|
ynh_script_progression --message="Backing up nginx web server configuration..." --time --weight=1
|
2018-03-24 01:29:14 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-03-24 01:29:14 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-04-04 03:34:57 +02:00
|
|
|
ynh_script_progression --message="Backing up php-fpm configuration..." --time --weight=1
|
2018-03-24 01:29:14 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
ynh_backup --src_path="/etc/php/7.0/fpm/pool.d/$app.conf"
|
2020-04-04 16:21:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --time --last
|
|
|
|
#ynh_backup --src_path="/etc/php/7.0/fpm/conf.d/20-$app.ini"
|
2018-03-24 01:29:14 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
# # Backup directory location for the app from where the script is executed and
|
|
|
|
# # which will be compressed afterward
|
|
|
|
# backup_dir=$YNH_APP_BACKUP_DIR
|
2017-01-28 23:39:42 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
# # Backup sources & data
|
|
|
|
# ynh_backup "/var/www/$app" "sources"
|
2017-01-28 23:39:42 +01:00
|
|
|
|
2020-04-04 03:34:57 +02:00
|
|
|
# # Copy Nginx conf
|
|
|
|
# sudo mkdir -p ./conf
|
|
|
|
# ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/nginx.conf"
|