Implemented working secure backup

This commit is contained in:
2021-01-11 14:14:36 +01:00
parent dc0894f168
commit dc4ddb6b27
7 changed files with 66 additions and 11 deletions

View File

@@ -3,6 +3,6 @@
hosts="{{pull_remote_backups_hosts}}";
errors=0
for host in $hosts; do
bash /usr/local/bin/pull-remote-backup.sh $host || ((errors+=1));
bash /usr/local/bin/pull-remote-backup.sh $host || ((errors+=1));
done;
exit $errors;