Update Vagrant to Windows 10

This commit is contained in:
BJ Dierkes 2021-12-18 13:06:29 -06:00
parent c19b51c40e
commit 5a8af96cc4

26
Vagrantfile vendored
View File

@ -7,41 +7,17 @@ Vagrant.configure("2") do |config|
config.vm.synced_folder ".", "/vagrant", disabled: false config.vm.synced_folder ".", "/vagrant", disabled: false
config.vm.define "linux" do |this| 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.hostname = "linux"
# this.vm.provision "shell", path: "scripts/vagrant/bootstrap.sh" # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.sh"
end 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| 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.box = "senglin/win-10-enterprise-vs2015community"
this.vm.hostname = "windows" this.vm.hostname = "windows"
# this.vm.provision "shell", path: "scripts/vagrant/bootstrap.ps1" # this.vm.provision "shell", path: "scripts/vagrant/bootstrap.ps1"
end 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| config.vm.provider "virtualbox" do |v|
v.memory = "4192" v.memory = "4192"
v.cpus = "4" v.cpus = "4"