Skip to content

Commit

Permalink
Merge pull request elasticdog#58 from tomaspapan/master
Browse files Browse the repository at this point in the history
Fix wrapper download iso url and update to April 2017 ISO
  • Loading branch information
tomswartz07 authored Apr 12, 2017
2 parents ee0e88f + 68e0c0d commit 02f2f5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arch-template.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"variables": {
"iso_url": "https://mirrors.kernel.org/archlinux/iso/2017.03.01/archlinux-2017.03.01-dual.iso",
"iso_checksum_url": "https://mirrors.kernel.org/archlinux/iso/2017.03.01/sha1sums.txt",
"iso_url": "https://mirrors.kernel.org/archlinux/iso/2017.04.01/archlinux-2017.04.01-x86_64.iso",
"iso_checksum_url": "https://mirrors.kernel.org/archlinux/iso/2017.04.01/sha1sums.txt",
"iso_checksum_type": "sha1",
"ssh_timeout": "20m",
"country": "US",
Expand Down
2 changes: 1 addition & 1 deletion wrapacker
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ else
fi

ISO_CHECKSUM_URL="${MIRROR}/iso/latest/sha1sums.txt"
ISO_NAME=$(curl -s "$ISO_CHECKSUM_URL" | awk '/dual.iso/{ print $2 }')
ISO_NAME=$(curl -s "$ISO_CHECKSUM_URL" | awk '/-x86_64.iso/{ print $2 }')
ISO_URL="${MIRROR}/iso/latest/${ISO_NAME}"

if [[ $timeout ]]; then
Expand Down

0 comments on commit 02f2f5e

Please sign in to comment.