diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2010-02-25 11:48:55 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2010-03-01 11:13:16 -0800 |
commit | 85d2e93f7f62c1669c5adedff3c0b737c6adf04f (patch) | |
tree | 6870a4a7fb325746cb144b9c90f61d30d447109d | |
parent | 395175ca904a9c46464892ccaad0fe3c5584a815 (diff) | |
download | vyatta-cfg-system-85d2e93f7f62c1669c5adedff3c0b737c6adf04f.tar.gz vyatta-cfg-system-85d2e93f7f62c1669c5adedff3c0b737c6adf04f.zip |
Bugfix 5217: Don't use the "-#" option to curl. It runs slow on serial ports.
(cherry picked from commit 1a9cc93dcda4bf9c6a8633317f86cca48652f5a5)
-rwxr-xr-x | scripts/install/install-image | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install/install-image b/scripts/install/install-image index 5de3772c..fd306aec 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -57,7 +57,7 @@ fetch_iso_by_url () echo "Trying to fetch ISO file from $NEW_ISO" filename="${TEMP_DIR}/${NEW_ISO##*/}" - curl -# -f -o $filename $NEW_ISO + curl -f -o $filename $NEW_ISO if [ $? -ne 0 ]; then echo "Unable to fetch ISO from $NEW_ISO" exit 1 |