Skip to content

Commit

Permalink
Restore original Vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed Dec 22, 2023
1 parent b4fc3cc commit ef7fae0
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'debian/bullseye64'
config.vm.box_version = '11.20220328.1'
config.vm.boot_timeout = 600 # seconds
config.vm.provider 'virtualbox' do |vb|
vb.memory = '4096'
vb.cpus = '2'

# https://github.com/hashicorp/vagrant/issues/11777#issuecomment-661076612
vb.customize ['modifyvm', :id, '--uart1', '0x3F8', '4']
vb.customize ['modifyvm', :id, '--uartmode1', 'file', File::NULL]
end
config.vm.box = 'bento/ubuntu-22.10'

config.vm.boot_timeout = 600 # seconds
config.ssh.insert_key = false
config.vm.provision "shell", inline: <<-SHELL
echo 'ClientAliveInterval 3' >> /etc/ssh/sshd_config
Expand Down

0 comments on commit ef7fae0

Please sign in to comment.