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

68 lines
2.3 KiB
Text
Raw Normal View History

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-02 16:34:46 +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 _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
#=================================================
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
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)
2017-01-28 23:39:42 +01:00
2018-03-24 01:29:14 +01:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_script_progression --message="Backing up the main app directory..." --time --weight=1
2018-03-24 01:29:14 +01: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
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
#=================================================
ynh_script_progression --message="Backing up php-fpm configuration..." --time --weight=1
2018-03-24 01:29:14 +01:00
ynh_backup --src_path="/etc/php/7.0/fpm/pool.d/$app.conf"
ynh_backup --src_path="/etc/php/7.0/fpm/conf.d/20-$app.ini"
2018-03-24 01:29:14 +01: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
# # Backup sources & data
# ynh_backup "/var/www/$app" "sources"
2017-01-28 23:39:42 +01:00
# # Copy Nginx conf
# sudo mkdir -p ./conf
# ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/nginx.conf"