summaryrefslogtreecommitdiffstats
path: root/modules/download.inc
blob: 519192216161b6e6c433193b4423ef1fde450f89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/ash

download() {
	curl --location --max-redirs 5 --max-time 7 --connect-timeout 2 "$@"
}

download_retry() {
	download --retry 3 --retry-max-time 12 "$@"
}