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

63 lines
1.8 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
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-01-29 16:06:41 +01:00
2020-04-02 16:34:46 +02:00
final_path=$(ynh_app_setting_get $app final_path)
domain=$(ynh_app_setting_get $app 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-02 16:34:46 +02:00
ynh_backup "$final_path"
2018-03-24 01:29:14 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2020-04-02 16:34:46 +02:00
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
2018-03-24 01:29:14 +01:00
#=================================================
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================
2020-04-02 18:02:34 +02:00
ynh_backup "/etc/php/7.0/fpm/pool.d/$app.conf"
ynh_backup "/etc/php/7.0/fpm/conf.d/20-$app.ini"
2018-03-24 01:29:14 +01:00
2020-04-02 16:34:46 +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-02 16:34:46 +02:00
# Backup sources & data
ynh_backup "/var/www/$app" "sources"
2017-01-28 23:39:42 +01:00
2020-04-02 16:34:46 +02:00
# Copy Nginx conf
sudo mkdir -p ./conf
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/nginx.conf"