mirror of
https://github.com/armbian/build.git
synced 2025-08-11 21:56:58 +02:00
- `do_with_retries()`: add `IS_A_RETRY` and `RETRY_FMT_MORE_THAN_ONCE` for convenient logging in retried functions
34 lines
947 B
Bash
34 lines
947 B
Bash
# Auto retries the number of times passed on first argument to run all the other arguments.
|
|
function do_with_retries() {
|
|
local retries="${1}"
|
|
shift
|
|
|
|
local sleep_seconds="${sleep_seconds:-5}"
|
|
local silent_retry="${silent_retry:-no}"
|
|
|
|
local counter=0
|
|
while [[ $counter -lt $retries ]]; do
|
|
counter=$((counter + 1))
|
|
declare -i RETRY_RUNS=${counter}
|
|
declare -i IS_A_RETRY=0
|
|
declare RETRY_FMT_MORE_THAN_ONCE=""
|
|
if [[ ${RETRY_RUNS} -gt 1 ]]; then
|
|
IS_A_RETRY=1
|
|
RETRY_FMT_MORE_THAN_ONCE=" (attempt ${RETRY_RUNS})"
|
|
fi
|
|
|
|
"$@" && return 0 # execute and return 0 if success; if not, let it loop;
|
|
if [[ "${silent_retry}" == "yes" ]]; then
|
|
: # do nothing
|
|
else
|
|
display_alert "Command failed, retrying in ${sleep_seconds}s" "$*" "warn"
|
|
fi
|
|
unset IS_A_RETRY
|
|
unset RETRY_RUNS
|
|
unset RETRY_FMT_MORE_THAN_ONCE
|
|
sleep "${sleep_seconds}"
|
|
done
|
|
display_alert "Command failed ${counter} times, giving up" "$*" "warn"
|
|
return 1
|
|
}
|