computer-playbook/roles/native-pull-remote-backups/templates/pull-remote-backups.sh

9 lines
224 B
Bash

#!/bin/bash
# Pulls the remote backups from multiple hosts
hosts="{{pull_remote_backups_hosts}}";
errors=0
for host in $hosts; do
bash /usr/local/bin/pull-remote-backup.sh $host || ((errors+=1));
done;
exit $errors;