PDudeP
Yes, the script was designed with that in mind, so you can back up multiple Enhance backup servers to a single large backup server. Just make sure to use the INCLUDE_SITES option when restoring to avoid restoring sites to the wrong backup server.
For proper disaster recovery, it's important to keep a record of the website IDs in a format that’s easy to use when needed. For this setup, we use the following simple script:
#!/bin/bash
output="/root/website_ids_$(hostname).txt"
for dir in /backups/*/; do
dir_name="${dir%/}"
name=$(basename "$dir_name")
echo "\"$name\""
done > "$output"
Simply copy and paste the output into the INCLUDE_SITES array when running the restore mode.