hashicorp / vagrant

Vagrant is a tool for building and distributing development environments.
https://www.vagrantup.com
Other
26.21k stars 4.43k forks source link

Vagrant is stuck when creating VM with QEMU provider #13330

Open anotherbridge opened 8 months ago

anotherbridge commented 8 months ago

Debug output

https://gist.github.com/anotherbridge/0683683cf97f0d2ced39b59ff8dab4ec#file-vagrant-log

Expected behavior

VM is created and connection is established.

Actual behavior

Stuck in an endless loop of trying to connect.

Vagrant version

Installed Version: 2.4.0
Latest Version: 2.4.0

You're running an up-to-date version of Vagrant!

Host operating system

macOS Sonoma 14.2.1, ARM architecture

Guest operating system

https://app.vagrantup.com/generic/boxes/debian12

Steps to reproduce

  1. Place Vagrantfile into directory.
  2. Run vagrant up --provider qemu

Vagrantfile

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = "generic/debian12"
end