mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
main/aports-build: limit release upload speed to 8MB/s
this is to workaround issue with scaleway arm servers that seem to have an issue when uploading the iso images.
This commit is contained in:
parent
70e567fc01
commit
2c92408d76
@ -1,7 +1,7 @@
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=aports-build
|
||||
pkgver=1.1
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
pkgdesc="MQTT based build-on-git-push scripts for Alpine Linux"
|
||||
url="http://alpinelinux.org"
|
||||
arch="noarch"
|
||||
@ -49,15 +49,15 @@ package() {
|
||||
|| return 1
|
||||
}
|
||||
|
||||
md5sums="fff27cb689beab2922c9b71635ca694d aports-build
|
||||
md5sums="08b1ee9e8fac50c7bc3303411a769038 aports-build
|
||||
cb4807ea64c4368487786217db087bac aports-build.initd
|
||||
c02d90b2bb0c48e416b707caa8766c50 mqtt-exec.aports-build.confd
|
||||
ea60ae81dc6557b0312f181c8c8aeecf report-build-errors.lua"
|
||||
sha256sums="0e8bc6c62940f9bf705596262d328850a7134115220fda8eef9ca957941a7420 aports-build
|
||||
sha256sums="8bd81798b268c17629fbbe5cd56c0d5aefb91a10eebe33b14ab4182ebeeec575 aports-build
|
||||
3e2d551f72273f37290db342a153abd377397483677a684645d22df7b8a8592f aports-build.initd
|
||||
7d2001688c3776ffb53c422dee424bcf0346ae20f3df5c6c2f4944022b19cb4d mqtt-exec.aports-build.confd
|
||||
b3d083ed4609ec92630819b638cd5dafdad17df68b25aa6da4c70de901910448 report-build-errors.lua"
|
||||
sha512sums="885f33bad12e33570f8cd206b0e37e6087576073d7ac46951167318a72fa8facf4ecdebae3cb1ef3dce67c2d69285de39ac864e315faaf881b5d923468fa439f aports-build
|
||||
sha512sums="dbc9a9cdd098637329c0339522dabd0436d0c20ec7355a3902afde4bb3c54e12ee824f0301c9d2ea64635e08ba48f914d0a9a28d9610a6210fddd03f212710a7 aports-build
|
||||
821035bda47152c341ec94bf960fa67e3377051826712ceb74f39103e6e422777b6e082231bfb87865653d2b93b7d3154cfc24abf65a52e3e66da69412dd7e41 aports-build.initd
|
||||
93d26e2055dbb02e863bf76b64a549c100decec3fda612ce96ca1464e6d61befa9f57f202553a25cf323e67e266f532d19c7423ff070943a59b3973946d949fe mqtt-exec.aports-build.confd
|
||||
3453e45cb687d2af6cd1c490fd5b7134f643570a84b354b57ba49295e5a0d01ef65abc0909aeb424cbe48aa280c19cc4f1dce5f4f10e5137a80395c3be00c733 report-build-errors.lua"
|
||||
|
||||
@ -77,7 +77,7 @@ create_release() {
|
||||
|
||||
if $use_network; then
|
||||
ssh $upload_host mkdir -p "${upload_iso#${upload_host}:}"
|
||||
rsync -ruv "$releasedir"/* "$upload_iso" || return 1
|
||||
rsync --bwlimit=8192 -ruv "$releasedir"/* "$upload_iso" || return 1
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user