docker-debmirror/retry.sh

6 lines
159 B
Bash
Raw Normal View History

2022-09-26 22:19:38 -07:00
#!/bin/bash
# try a command up to 5 times
# 15 minute sleep between tries
# exit after the first success
for i in 1 2 3 4 5; do $@ && break || sleep 900; done