2021-09-11 16:08:56 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
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-29 15:26:17 +01:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2021-09-11 16:08:56 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-03-29 15:26:17 +01:00
|
|
|
# BACKUP SYSTEM FILES
|
2021-09-11 16:08:56 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup --src_path="/etc/systemd/system/$app.service"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP VARIOUS FILES
|
|
|
|
#=================================================
|
|
|
|
|
2024-03-29 15:26:17 +01:00
|
|
|
ynh_backup --src_path="/var/log/$app"
|
2021-09-12 20:43:14 +02:00
|
|
|
ynh_backup --src_path="$etc_path"
|
2021-09-11 16:08:56 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-09-12 14:49:16 +02:00
|
|
|
# BACKUP THE POSTGRESQL DATABASE
|
2021-09-11 16:08:56 +02:00
|
|
|
#=================================================
|
2022-09-05 21:45:47 +02:00
|
|
|
ynh_print_info --message="Backing up the PostgreSQL database..."
|
2021-09-11 16:08:56 +02:00
|
|
|
|
2021-09-12 14:49:16 +02:00
|
|
|
ynh_psql_dump_db --database="$db_name" > db.sql
|
2021-09-11 16:08:56 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|