bump vagrant to debian11

This commit is contained in:
meaz 2022-12-27 12:29:08 +01:00
parent 82c96c0f25
commit a834948afd
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 2 additions and 1 deletions

3
Vagrantfile vendored
View File

@ -8,7 +8,7 @@
Vagrant.configure("2") do |config|
#config.ssh.insert_key = false
config.vm.define "hubot" do |hubot|
hubot.vm.box = "generic/debian10"
hubot.vm.box = "generic/debian11"
hubot.vm.provider :libvirt do |libvirt|
libvirt.memory = 256
end
@ -16,5 +16,6 @@ Vagrant.configure("2") do |config|
hubot.vm.network "forwarded_port", guest: 443, host: 4445, host_ip: "192.168.33.18"
hubot.vm.network "forwarded_port", guest: 8080, host: 8082, host_ip: "192.168.33.18"
hubot.vm.network "private_network", ip: "192.168.33.18"
config.vm.provision "shell", inline: "apt install acl"
end
end