1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/airsonic_ynh.git synced 2024-09-03 18:06:14 +02:00
airsonic_ynh/scripts/backup

61 lines
1.9 KiB
Text
Raw Normal View History

2019-02-06 19:37:46 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-09-21 01:03:09 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-02-06 19:37:46 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
2020-11-22 10:16:48 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
2019-05-22 22:10:48 +02:00
#=================================================
2020-11-22 10:16:48 +01:00
ynh_print_info --message="Declaring files to be backed up..."
2019-05-22 22:10:48 +02:00
2019-02-06 19:37:46 +01:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2023-04-02 14:48:59 +02:00
ynh_backup --src_path="$install_dir"
2019-02-06 19:37:46 +01:00
2022-09-21 01:03:09 +02:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2023-04-02 14:48:59 +02:00
ynh_backup --src_path="$data_dir" --is_big
2022-09-21 01:03:09 +02:00
2019-02-06 19:37:46 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-05-22 22:10:48 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-02-06 19:37:46 +01:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
2019-05-22 22:10:48 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2019-02-06 19:37:46 +01:00
#=================================================
# BACKUP SYSTEMD
#=================================================
2019-05-22 22:10:48 +02:00
ynh_backup --src_path="/etc/systemd/system/$app.service"
2019-02-06 19:37:46 +01:00
2019-10-07 16:02:06 +02:00
#=================================================
2022-09-21 01:03:09 +02:00
# BACKUP VARIOUS FILES
2019-10-07 16:02:06 +02:00
#=================================================
2022-09-21 01:03:09 +02:00
ynh_backup --src_path="/etc/default/$app"
2019-10-07 16:02:06 +02:00
2019-02-06 19:37:46 +01:00
#=================================================
2019-05-22 22:10:48 +02:00
# END OF SCRIPT
2019-02-06 19:37:46 +01:00
#=================================================
2020-11-22 10:16:48 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."