From ac79ef38c5df2c7794782703928bbbe524e634aa Mon Sep 17 00:00:00 2001 From: Manohar Castelino Date: Tue, 12 Feb 2019 16:14:06 -0800 Subject: [PATCH] Downloading OVMF causes issues with libvirt The parent box is already downloading the OVMF firmware. Just use the firmware that is already downloaded. Signed-off-by: Manohar Castelino --- clr-k8s-examples/Vagrantfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/clr-k8s-examples/Vagrantfile b/clr-k8s-examples/Vagrantfile index 4fcf0f0..c96b23d 100644 --- a/clr-k8s-examples/Vagrantfile +++ b/clr-k8s-examples/Vagrantfile @@ -22,10 +22,6 @@ proxy_ip_list = "" #DISK_UUID = Time.now.utc.to_i driveletters = ('a'..'z').to_a -if not File.exists?($loader) - system('curl -O https://download.clearlinux.org/image/OVMF.fd') -end - # We need v 1.0.14 or above for this vagrantfile to work. unless Vagrant.has_plugin?("vagrant-guests-clearlinux") system "vagrant plugin install vagrant-guests-clearlinux" @@ -63,7 +59,6 @@ Vagrant.configure("2") do |config| c.vm.hostname = vm_name c.vm.network :private_network, ip: ip, autostart: true c.vm.provider :libvirt do |lv| - lv.loader = $loader lv.cpu_mode = "host-passthrough" lv.nested = true lv.cpus = $cpus