Skip to content

Commit

Permalink
Comment on unsupported network card
Browse files Browse the repository at this point in the history
If you get

```
cloud-init-nonet[4.54]: waiting 10 seconds for network device
cloud-init-nonet[14.57]: waiting 120 seconds for network device
cloud-init-nonet[134.57]: gave up waiting for a network device.
```
Your netowrk card is not supported with the default adapter. See [here](hashicorp/vagrant#3860 (comment)). Try to uncomment the lines above.
  • Loading branch information
lookfwd committed Sep 8, 2016
1 parent 3bd9529 commit 5a6600a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Vagrantfile.32
Expand Up @@ -25,5 +25,14 @@ Vagrant.configure("2") do |config|
vb.name = "scrapy-vm-32"
vb.check_guest_additions = false
vb.cpus = 1
# If you get: cloud-init-nonet[4.54]: waiting 10 seconds for network device
# cloud-init-nonet[14.57]: waiting 120 seconds for network device
# cloud-init-nonet[134.57]: gave up waiting for a network device.
# Your netowrk card is not supported with the default adapter.
# See: https://github.com/mitchellh/vagrant/issues/3860#issuecomment-167664778
# Try to uncomment the following two lines:
#
# vb.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
# vb.customize ["modifyvm", :id, "--nictype2", "Am79C973"]
end
end

0 comments on commit 5a6600a

Please sign in to comment.