bump vagrant to debian11
This commit is contained in:
parent
82c96c0f25
commit
a834948afd
1 changed files with 2 additions and 1 deletions
3
Vagrantfile
vendored
3
Vagrantfile
vendored
|
@ -8,7 +8,7 @@
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
#config.ssh.insert_key = false
|
#config.ssh.insert_key = false
|
||||||
config.vm.define "hubot" do |hubot|
|
config.vm.define "hubot" do |hubot|
|
||||||
hubot.vm.box = "generic/debian10"
|
hubot.vm.box = "generic/debian11"
|
||||||
hubot.vm.provider :libvirt do |libvirt|
|
hubot.vm.provider :libvirt do |libvirt|
|
||||||
libvirt.memory = 256
|
libvirt.memory = 256
|
||||||
end
|
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: 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 "forwarded_port", guest: 8080, host: 8082, host_ip: "192.168.33.18"
|
||||||
hubot.vm.network "private_network", 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
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue