From 5a8af96cc40376c96baa579e27a898b5ab8eaac6 Mon Sep 17 00:00:00 2001 From: BJ Dierkes Date: Sat, 18 Dec 2021 13:06:29 -0600 Subject: [PATCH] Update Vagrant to Windows 10 --- Vagrantfile | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index f6901953..2690d3f6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,41 +7,17 @@ Vagrant.configure("2") do |config| config.vm.synced_folder ".", "/vagrant", disabled: false config.vm.define "linux" do |this| - this.vm.box = "trueability/ubuntu-16.04" + this.vm.box = "trueability/ubuntu-20.04" this.vm.hostname = "linux" # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.sh" end - config.vm.define "ubuntu-16.04" do |this| - this.vm.box = "trueability/ubuntu-16.04" - this.vm.hostname = "ubuntu-1604" - # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.sh" - end - - config.vm.define "centos-7" do |this| - this.vm.box = "trueability/centos-7" - this.vm.hostname = "centos-7" - # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.sh" - end - config.vm.define "windows" do |this| - this.vm.box = "trueability/windows-server-2012-r2" - this.vm.hostname = "windows" - # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.ps1" - end - - config.vm.define "windows-10-enterprise" do |this| this.vm.box = "senglin/win-10-enterprise-vs2015community" this.vm.hostname = "windows" # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.ps1" end - config.vm.define "windows-server-2012-r2" do |this| - this.vm.box = "trueability/windows-server-2012-r2" - this.vm.hostname = "windows" - # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.ps1" - end - config.vm.provider "virtualbox" do |v| v.memory = "4192" v.cpus = "4"