From 6125971c7168280350ab918749b38873e2e51b4b Mon Sep 17 00:00:00 2001 From: Alejandro Pauly Date: Sun, 12 Jan 2020 19:24:04 -0500 Subject: [PATCH] Move installation of curl in ubuntu18 to last since before it was removed from there it was working. --- images/linux/scripts/installers/1804/basic.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/linux/scripts/installers/1804/basic.sh b/images/linux/scripts/installers/1804/basic.sh index 616f77de7..1a556a4b8 100644 --- a/images/linux/scripts/installers/1804/basic.sh +++ b/images/linux/scripts/installers/1804/basic.sh @@ -10,9 +10,6 @@ source $HELPER_SCRIPTS/apt.sh set -e -echo "Install curl" -apt-get install -y --no-install-recommends curl - echo "Install dnsutils" apt-get install -y --no-install-recommends dnsutils @@ -115,6 +112,9 @@ apt-get install -y --no-install-recommends xorriso echo "Install zsync" apt-get install -y --no-install-recommends zsync +echo "Install curl" +apt-get install -y --no-install-recommends curl + # Run tests to determine that the software installed as expected echo "Testing to make sure that script performed as expected, and basic scenarios work" for cmd in curl file ftp jq netcat ssh rsync shellcheck sudo telnet time unzip wget zip; do