From 550eb5fddd5d341b0ffbe4fb6999cfc953d1de49 Mon Sep 17 00:00:00 2001
From: Trupesh Patel <tr27p@uab.edu>
Date: Tue, 5 Feb 2019 10:52:17 -0600
Subject: [PATCH] fixed the .iso download to work on Mac

wget is not avilable for Mac by default so used curl.
---
 compute_create | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compute_create b/compute_create
index 644b75f..cc0769e 100755
--- a/compute_create
+++ b/compute_create
@@ -17,7 +17,7 @@ fi
 # Download the ipxe.iso boot image if it doesn't already exist
 if [[ ! -f "$HOME/iso/ipxe.iso" ]]; then
   echo "Downloading the network boot ipxe.iso file"
-  wget -O ~/iso/ipxe.iso http://boot.ipxe.org/ipxe.iso
+  crul -o ~/iso/ipxe.iso http://boot.ipxe.org/ipxe.iso
 fi
 
 VBoxManage createvm --name "$nodename" --register
-- 
GitLab