summaryrefslogtreecommitdiffstats
path: root/modules/download.inc
blob: bbe4aaeb5be44dd237b59fee719f48b4e02055f6 (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 "$@"
}

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