mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-14 00:41:06 +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;
|