Shorted backup- to bkp-

This commit is contained in:
2025-07-09 03:36:44 +02:00
parent d0bd33fee3
commit 9668e74139
56 changed files with 89 additions and 89 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 }}bkp-remote-to-local.sh $host || ((errors+=1));
done;
exit $errors;