Esta manhã eu ia fazer alguns testes em uma nova configuração de DevOps e comecei a criar um novo arquivo Vagrant, definir minhas configurações desejadas e executar vagrant up
, logo após o boom, ele explode com este erro:
Command: ["hostonlyif", "create"]
Stderr: 0%...
Progress state: NS_ERROR_FAILURE
VBoxManage: error: Failed to create the host-only adapter
VBoxManage: error: VBoxNetAdpCtl: Error while adding new interface: failed to open /dev/vboxnetctl: No such file or directory
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component HostNetworkInterface, interface IHostNetworkInterface
VBoxManage: error: Context: "int handleCreate(HandlerArg*, int, int*)" at line 68 of file VBoxManageHostonly.cpp
Para consertar isso eu tive que correr vagrant destroy
para matar o vagabundo borked e então esta pequena joia que fez tudo certo de novo:
sudo /Library/StartupItems/VirtualBox/VirtualBox restart
A chamada subsequente para vagrant up
funcionou como um encanto.