-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVagrantfile
More file actions
16 lines (16 loc) · 752 Bytes
/
Copy pathVagrantfile
File metadata and controls
16 lines (16 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Vagrant.configure("2") do |config|
config.vm.define "windows" do |windows|
windows.vm.box = "gusztavvargadr/windows-10-21h2-enterprise"
windows.vm.hostname = 'windows-pyInstaller'
windows.vm.box_url = "gusztavvargadr/windows-10-21h2-enterprise"
windows.vm.provision :shell, privileged: "true", path: "pyInstallerBootstrap.ps1"
windows.vm.provider :virtualbox do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--cpus", 2]
v.customize ["modifyvm", :id, "--memory", 4096]
v.customize ["modifyvm", :id, "--nested-hw-virt", "off"]
v.customize ["modifyvm", :id, "--pae", "off"]
v.customize ["modifyvm", :id, "--name", "windows-pyInstaller"]
end
end
end