From 567aa743194453b789704b363d646281625ef7c9 Mon Sep 17 00:00:00 2001 From: Marc Gariepy Date: Fri, 19 Mar 2021 15:14:05 -0400 Subject: [PATCH] Fix vagrantfile config fix the config for focal Change-Id: I9d73211137c1fc409db7f98e17416d90ec04fc96 --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index e02fdbb4..4468b89b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -45,7 +45,7 @@ Vagrant.configure(2) do |config| end config.vm.define "ubuntu2004" do |focal| - bionic.disksize.size = "40GB" - bionic.vm.box = "ubuntu/focal64" + focal.disksize.size = "40GB" + focal.vm.box = "ubuntu/focal64" end end