added a hostname to the vm

This commit is contained in:
Francois Lesueur 2022-12-22 17:20:53 +01:00
parent 748ce60773
commit 5545db5891

View File

@ -26,6 +26,7 @@ Vagrant.configure("2") do |config|
end
config.vm.box = "debian/bullseye64"
config.vm.hostname = 'kaz-vm'
config.disksize.size = '32GB'
# Disable automatic box update checking. If you disable this, then
@ -66,7 +67,7 @@ Vagrant.configure("2") do |config|
# # Customize the amount of memory on the VM:
vb.memory = "4096"
vb.cpus="2"
vb.name = "kaz-dev-amd64"
vb.name = "kaz-vm"
vb.customize ["modifyvm", :id, "--vram", "64", "--clipboard-mode", "bidirectional", '--graphicscontroller', 'vmsvga', '--natnet1', '192.168.64.0/24']
vb.gui = true