2022-11-13 11:25:39 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2024-08-31 03:59:45 +02:00
|
|
|
ynh_print_info "Declaring files to be backed up..."
|
2022-11-13 11:25:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 03:59:45 +02:00
|
|
|
ynh_backup "$install_dir"
|
2022-11-13 11:25:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 03:59:45 +02:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2022-11-13 11:25:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 03:59:45 +02:00
|
|
|
ynh_backup "/etc/logrotate.d/$app"
|
2022-11-13 11:25:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 03:59:45 +02:00
|
|
|
ynh_backup "/etc/systemd/system/$app.service"
|
2022-11-13 11:25:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 03:59:45 +02:00
|
|
|
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|