mirror of
https://github.com/YunoHost-Apps/horde_ynh.git
synced 2024-09-03 19:16:08 +02:00
46 lines
1.5 KiB
Bash
Executable file
46 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Stop script if errors
|
|
ynh_abort_if_errors
|
|
|
|
# Import common cmd
|
|
source ../settings/scripts/experimental_helper.sh
|
|
source ../settings/scripts/_common.sh
|
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
|
|
|
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)
|
|
|
|
#=================================================
|
|
# STANDARD BACKUP STEPS
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
ynh_script_progression --message="Backing up code..." --weight=3
|
|
ynh_backup --src_path "$final_path"
|
|
|
|
# Backup user data
|
|
ynh_script_progression --message="Backing up user data..." --weight=10
|
|
ynh_backup --src_path "$gollem_data_dir"
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
ynh_script_progression --message="Backing up configuration..."
|
|
ynh_backup --src_path "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
ynh_backup --src_path "/etc/php5/fpm/pool.d/$app.conf"
|
|
|
|
# BACKUP THE MYSQL DATABASE
|
|
ynh_script_progression --message="Backing up database"
|
|
ynh_mysql_dump_db "$db_name" > db.sql
|
|
|
|
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last
|