mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
6 lines
156 B
Bash
6 lines
156 B
Bash
#!/bin/bash
|
|
hosts="{{pull_remote_backups_hosts}}";
|
|
for host in $hosts; do
|
|
bash /usr/local/bin/pull-remote-backup/pull-remote-backup.sh $host;
|
|
done;
|