mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			235 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			235 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| #!/bin/bash
 | |
| # Pulls the remote backups from multiple hosts
 | |
| hosts="{{pull_remote_backups}}";
 | |
| errors=0
 | |
| for host in $hosts; do
 | |
|   bash {{docker_pull_primary_backups_folder}}pull-remote-backup.sh $host || ((errors+=1));
 | |
| done;
 | |
| exit $errors;
 |