x86_64 to amd64 to match Vagrant arch names

This commit is contained in:
Greg Hellings
2023-11-27 21:00:35 -06:00
parent 997880276d
commit d472bf08d5
41 changed files with 99 additions and 75 deletions
+19
View File
@@ -0,0 +1,19 @@
Vagrant.configure('2') do |c|
c.vm.synced_folder ".", "/vagrant", type: "rsync"
# Set some basic overrides
c.vm.provider :libvirt do |v, override|
v.driver = 'kvm'
v.connect_via_ssh = false
#v.username = 'root'
v.memory = 2048
# QEmu Guest Agent channel
v.qemu_use_agent = true
end
c.vm.provider :virtualbox do |v|
v.gui = false
v.memory = 2048
end
c.vm.provider :vmware_fusion do |v|
v.gui = false
end
end