Reputation: 387
Today I have started learning Vagrant. Creating first, base virtual machine ( hashicorp/precise32) went pretty smooth. So I wanted to test another box, this time :puppetlabs/ubuntu-14.04-32-puppet. However im getting this msg : default: Warning: Connection timeout. Retrying...
I have read that it might be because of disabled virtualization, but as I understand virtualization it's only needed for 64bit machines. So what can be problem here? Could anyone help me, please? Thanks in advance.
Upvotes: 0
Views: 187
Reputation: 4721
try
config.vm.synced_folder '.', '/vagrant', disabled: true
in vagrantfileUpvotes: 1