Renamed backup roles

This commit is contained in:
2025-07-14 19:04:30 +02:00
parent 4acf2137e8
commit f02ca50f88
42 changed files with 66 additions and 66 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
# Pulls the remote backups from multiple hosts
hosts="{{ pull_remote_backups | join(' ') }}";
errors=0
for host in $hosts; do
bash {{ docker_backup_remote_to_local_folder }}svc-bkp-rmt-2-loc.sh $host || ((errors+=1));
done;
exit $errors;