jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/376528 )

Change subject: Fix possible startup issue with VirtualBox 5.1
......................................................................


Fix possible startup issue with VirtualBox 5.1

Change-Id: Ie9f01fe6d3d0e30d3e16097ffda564210d3db9da
---
M Vagrantfile
1 file changed, 5 insertions(+), 0 deletions(-)

Approvals:
  BryanDavis: Checked; Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Vagrantfile b/Vagrantfile
index 4398c72..6506712 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -170,6 +170,11 @@
     vb.customize ['modifyvm', :id, '--ostype', 'Ubuntu_64']
     vb.customize ['modifyvm', :id, '--ioapic', 'on']  # Bug 51473
 
+    # The most recent versions of VirtualBox (5.1.x) seem to start the NAT
+    # interface as disconnected (preventing startup), so we need to turn it
+    # on explicitly. https://github.com/mitchellh/vagrant/issues/7648
+    vb.customize ['modifyvm', :id, '--cableconnected1', 'on']
+
     # Speed up dns resolution in some cases
     vb.customize ['modifyvm', :id, '--natdnshostresolver1', 'on']
     vb.customize ['modifyvm', :id, '--natdnsproxy1', 'on']

-- 
To view, visit https://gerrit.wikimedia.org/r/376528
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie9f01fe6d3d0e30d3e16097ffda564210d3db9da
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/vagrant
Gerrit-Branch: master
Gerrit-Owner: Dbrant <dbr...@wikimedia.org>
Gerrit-Reviewer: BryanDavis <bda...@wikimedia.org>
Gerrit-Reviewer: Dduvall <dduv...@wikimedia.org>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to