2017-01-05 23:37:07 +01:00
#!/bin/bash
2018-01-31 16:07:43 +01:00
#=================================================
# GENERIC START
#=================================================
2023-12-09 00:35:51 +01:00
# IMPORT GENERIC HELPERS
#=================================================
2018-01-31 16:07:43 +01:00
2023-12-09 00:35:51 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2020-11-17 23:37:38 +01:00
source ../settings/scripts/_common.sh
2024-04-04 00:28:32 +02:00
source ../settings/scripts/experimental_helper.sh
2017-07-21 22:11:45 +02:00
source /usr/share/yunohost/helpers
2024-04-04 00:28:32 +02:00
load_vars
2017-01-05 23:37:07 +01:00
2023-12-11 11:46:49 +01:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-04-27 00:53:41 +02:00
if systemctl is-active "$app".service --quiet; then
2024-04-04 00:28:32 +02:00
ynh_print_warn --message="It's highly recommended to make your backup when the service is stopped. Please stop $app service with this command before to run the backup 'systemctl stop $app.service'"
fi
2022-11-02 23:07:44 +01:00
2018-01-31 16:07:43 +01:00
#=================================================
2023-12-09 00:35:51 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
2018-01-31 16:07:43 +01:00
#=================================================
2023-12-09 00:35:51 +01:00
ynh_print_info --message="Declaring files to be backed up..."
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2024-04-04 00:28:32 +02:00
ynh_backup --src_path="/etc/$app/"
2024-04-26 21:41:46 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_backup --src_path="$nginx_status_conf"
2024-04-04 00:28:32 +02:00
ynh_print_info --message="Backing up code..."
2024-04-27 00:53:41 +02:00
ynh_backup --src_path="$install_dir"
2017-01-05 23:37:07 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP SYSTEMD
#=================================================
2023-01-22 03:09:34 +01:00
2024-04-26 21:41:46 +02:00
ynh_backup --src_path="/etc/systemd/system/$app.service"
2018-04-30 21:41:07 +02:00
2023-12-09 00:35:51 +01:00
#=================================================
# BACKUP VARIOUS FILES
#=================================================
2024-04-04 00:28:32 +02:00
ynh_backup --src_path="$data_dir" --is_big=1
2023-12-11 11:46:49 +01:00
2023-12-09 00:35:51 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2017-02-13 16:17:53 +01:00
2020-12-12 15:01:50 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."