2018-04-15 12:49:57 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-14 18:42:38 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2018-04-15 12:49:57 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
2020-04-11 14:18:16 +02:00
|
|
|
db_name="$app"
|
|
|
|
|
2018-04-15 12:49:57 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2020-04-11 14:18:16 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_psql_dump_db --database="$db_name" > ${YNH_CWD}/dump.sql
|
|
|
|
|
2018-04-15 12:49:57 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup "/etc/systemd/system/$app.service"
|
|
|
|
|