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

80 lines
2.6 KiB
Text
Raw Normal View History

2016-11-29 00:20:02 +01:00
#!/bin/bash
2016-07-05 15:22:12 +02:00
2022-02-13 22:09:18 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-07-05 15:22:12 +02:00
2022-02-13 22:09:18 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2017-05-18 23:28:18 +02:00
source ../settings/scripts/_common.sh
2022-02-13 22:09:18 +01:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-05-18 23:28:18 +02:00
2022-02-13 22:09:18 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2022-10-20 02:27:52 +02:00
ynh_print_info --message="Loading settings..."
2022-02-13 22:09:18 +01:00
2016-07-05 15:22:12 +02:00
app=$YNH_APP_INSTANCE_NAME
2022-02-13 22:09:18 +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)
conf_file=$(ynh_app_setting_get --app=$app --key=conf_file)
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_backup --src_path="$final_path/$appname"
ynh_backup --src_path="$final_path/custom-addons"
ynh_backup --src_path="$final_path/.local"
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP SYSTEMD
#=================================================
ynh_backup --src_path="/etc/systemd/system/$app.service"
#=================================================
# BACKUP VARIOUS FILES
#=================================================
ynh_backup --src_path="$conf_file"
2017-05-18 23:28:18 +02:00
2022-02-13 22:09:18 +01:00
#=================================================
# BACKUP THE POSTGRESQL DATABASE
#=================================================
ynh_print_info --message="Backing up the PostgreSQL database..."
2016-07-05 15:22:12 +02:00
2022-02-13 22:09:18 +01:00
ynh_psql_dump_db --database="$db_name" > db.sql
2017-05-18 23:28:18 +02:00
2022-02-13 22:09:18 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-02-13 22:09:18 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."