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

52 lines
1.7 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
#=================================================
# 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
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2024-03-20 20:49:39 +01:00
ynh_backup --src_path="$install_dir/$appname"
ynh_backup --src_path="$install_dir/custom-addons"
ynh_backup --src_path="$install_dir/.local"
ynh_backup --src_path="$conf_file"
2022-02-13 22:09:18 +01:00
#=================================================
2024-03-20 20:49:39 +01:00
# BACKUP THE SYSTEM CONFIGURATION
2022-02-13 22:09:18 +01:00
#=================================================
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_backup --src_path="/etc/systemd/system/$app.service"
#=================================================
# BACKUP VARIOUS FILES
#=================================================
2024-03-20 20:49:39 +01:00
ynh_backup --src_path="/var/log/$app.log"
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)."