mirror of
https://github.com/YunoHost-Apps/restic_ynh.git
synced 2024-09-03 20:16:22 +02:00
43 lines
1.5 KiB
Bash
Executable file
43 lines
1.5 KiB
Bash
Executable file
#!/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
|
|
#=================================================
|
|
|
|
ynh_backup --src_path="$install_dir"
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
|
|
for suffix in "${systemd_services_suffixes[@]}"; do
|
|
ynh_backup --src_path="/etc/systemd/system/$app$suffix.timer"
|
|
ynh_backup --src_path="/etc/systemd/system/$app$suffix.service"
|
|
done
|
|
|
|
ynh_backup --src_path="/etc/yunohost/hooks.d/backup_method/05-${app}_app"
|
|
ynh_backup --src_path="/etc/sudoers.d/$app"
|
|
|
|
ynh_backup --src_path="/root/.ssh/id_${app}_ed25519"
|
|
ynh_backup --src_path="/root/.ssh/id_${app}_ed25519.pub"
|
|
# FIXME: uh do we really want to backup it all?
|
|
ynh_backup --src_path="/root/.ssh/config"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|