https://bugzilla.wikimedia.org/show_bug.cgi?id=67899
Bryan Davis <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Bryan Davis <[email protected]> --- VirtualBox 4.1.18 was released Jun 20th 2012, so it's not surprising that the guest additions code that goes along with it has compilation issues on an OS that was released nearly two years later. The new problem that has been introduced here is that setup.sh is now installing the Vagrant-VBGuest plugin which is trying to force updating your guest os extensions on each `vagrant up`. One workaround would be to add: Vagrant.configure("2") do |config| config.vbguest.auto_update = false end to a local Vagrantfile-extra.rb file in your ~/.vagrant.d/Vagrantfile. This should disable the auto-update feature of the plugin for you. You could alternately put that snippet in a Vagrantfile-extra.rb in the MediaWiki-Vagrant checkout directory. -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
