mirror of
https://github.com/YunoHost-Apps/restic_ynh.git
synced 2024-09-03 20:16:22 +02:00
57 lines
2 KiB
Bash
Executable file
57 lines
2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# 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
|
|
|
|
#=================================================
|
|
# MANAGE SCRIPT FAILURE
|
|
#=================================================
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
ynh_print_info --message="Loading installation settings..."
|
|
|
|
export app=$YNH_APP_INSTANCE_NAME
|
|
export final_path="/opt/yunohost/${app}"
|
|
|
|
#=================================================
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
#=================================================
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
|
|
#=================================================
|
|
# BACKUP VARIOUS FILES
|
|
#=================================================
|
|
|
|
ynh_backup "/usr/local/bin/backup-with-$app"
|
|
ynh_backup "/etc/systemd/system/$app.service"
|
|
ynh_backup "/etc/systemd/system/$app.timer"
|
|
ynh_backup "/etc/systemd/system/${app}_check.service"
|
|
ynh_backup "/etc/systemd/system/${app}_check.timer"
|
|
ynh_backup "/etc/systemd/system/${app}_check_read_data.service"
|
|
ynh_backup "/etc/systemd/system/${app}_check_read_data.timer"
|
|
ynh_backup "/etc/yunohost/hooks.d/backup_method/05-${app}_app"
|
|
ynh_backup "${final_path}/check_method_${app}"
|
|
ynh_backup "${final_path}/restic_log_${app}"
|
|
ssh_dir="/root/.ssh"
|
|
ynh_backup "${ssh_dir}/id_${app}_ed25519"
|
|
ynh_backup "${ssh_dir}/id_${app}_ed25519.pub"
|
|
ynh_backup "${ssh_dir}/config"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|