diff options
| author | Jonathan Bauer | 2013-08-19 16:32:12 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2013-08-19 16:32:12 +0200 |
| commit | cf966cfde42cf7d4c64635e567c398b953213adf (patch) | |
| tree | f39872e4a7171fd05019131c265380ca1c070137 /remote/rootfs | |
| parent | [rootfs-stage31] changed the way stage3.1 gets the config, config.tgz and sta... (diff) | |
| download | tm-scripts-cf966cfde42cf7d4c64635e567c398b953213adf.tar.gz tm-scripts-cf966cfde42cf7d4c64635e567c398b953213adf.tar.xz tm-scripts-cf966cfde42cf7d4c64635e567c398b953213adf.zip | |
[rootfs-stage31] prioritize servers from the config file over those in kernel cmdline
Diffstat (limited to 'remote/rootfs')
| -rw-r--r-- | remote/rootfs/rootfs-stage31/data/etc/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/rootfs/rootfs-stage31/data/etc/functions b/remote/rootfs/rootfs-stage31/data/etc/functions index 5c5ba56c..1918c82a 100644 --- a/remote/rootfs/rootfs-stage31/data/etc/functions +++ b/remote/rootfs/rootfs-stage31/data/etc/functions @@ -64,7 +64,7 @@ download() { local TARGET_PATH="$2" for TIMEOUT in 1 2 3 4 5; do - for SERVER in $SLX_BASE_SERVERS $SLX_SERVERS; do + for SERVER in $SLX_SERVERS $SLX_BASE_SERVERS; do wget -T 5 -q -O "$TARGET_PATH" "http://${SERVER}/${FILE_URL}" RET=$? if [ "x$RET" != "x0" ]; then |
