From 710c4674d15e2aa19dbbdea842ddc29921dec514 Mon Sep 17 00:00:00 2001 From: Alan Sill <alan.sill@ttu.edu> Date: Mon, 18 Mar 2019 13:24:08 -0500 Subject: [PATCH] Fix typo in curl command in compute_create --- compute_create | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute_create b/compute_create index cc0769e..56be98d 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" - crul -o ~/iso/ipxe.iso http://boot.ipxe.org/ipxe.iso + curl -o ~/iso/ipxe.iso http://boot.ipxe.org/ipxe.iso fi VBoxManage createvm --name "$nodename" --register -- GitLab