mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
74 lines
2.2 KiB
Bash
74 lines
2.2 KiB
Bash
#!/bin/bash
|
|
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
if [ ! -e _common.sh ]; then
|
|
# Fetch helpers file if not in current directory
|
|
cp ../settings/scripts/_common.sh ./_common.sh
|
|
chmod a+rx _common.sh
|
|
fi
|
|
source _common.sh
|
|
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
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
#=================================================
|
|
# STANDARD BACKUP STEPS
|
|
#=================================================
|
|
# BACKUP APP MAIN DIR
|
|
#=================================================
|
|
|
|
ynh_backup "$final_path"
|
|
|
|
# Copy the data directory
|
|
backup_core_only=$(ynh_app_setting_get "$app" backup_core_only)
|
|
if [ -z $backup_core_only ] # If backup_core_only setting set, don't backup data directory
|
|
then
|
|
ynh_backup /home/yunohost.app/${app}/upload
|
|
else
|
|
echo "Data dir won't be saved, because backup_core_only is set." >&2
|
|
# Remove the option so that next regular backup will be complete
|
|
ynh_app_setting_delete $app backup_core_only
|
|
fi
|
|
|
|
#=================================================
|
|
# BACKUP FAIL2BAN CONFIGURATION
|
|
#=================================================
|
|
ynh_backup "/etc/fail2ban/jail.d/$app.conf"
|
|
ynh_backup "/etc/fail2ban/filter.d/$app.conf"
|
|
|
|
#=================================================
|
|
# BACKUP NGINX CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
#=================================================
|
|
# BACKUP PHP-FPM CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup "/etc/php5/fpm/pool.d/$app.conf"
|
|
|
|
#=================================================
|
|
# BACKUP MYSQL DB
|
|
#=================================================
|
|
|
|
ynh_mysql_dump_db "$db_name" > db.sql
|