[tor-bugs] #9280 [Tor bundles/installation]: Building TBB 3.0 with Vagrant fails
Tor Bug Tracker & Wiki
blackhole at torproject.org
Wed Jul 17 15:43:56 UTC 2013
#9280: Building TBB 3.0 with Vagrant fails
--------------------------------------+-------------------------------------
Reporter: gk | Owner: erinn
Type: defect | Status: new
Priority: normal | Milestone:
Component: Tor bundles/installation | Version:
Keywords: tbb-3.0 | Parent:
Points: | Actualpoints:
--------------------------------------+-------------------------------------
Comment(by arlolra):
The Vagrantfile expects vagrant 1.2.x. I'm guessing you're using an
outdated version.
Either try upgrading to the latest, or you can edit line 4 from,
{{{
Vagrant.configure("2") do |config|
}}}
to,
{{{
Vagrant::Config.run do |config|
}}}
and line 40 from,
{{{
config.vm.provider :virtualbox do |vb|
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "1280"]
end
}}}
to,
{{{
config.vm.customize ["modifyvm", :id, "--memory", 1280]
}}}
You may run into another problem with Guest Additions, in which case you
can try changing your `config.vm.box_url` to something like
http://dl.dropbox.com/u/1537815/precise64.box. There's a bunch of boxes at
http://www.vagrantbox.es/.
Hope that helps. I've only tested on,
{{{
λ vagrant -v
Vagrant version 1.2.2
λ VBoxManage -v
4.2.16r86992
}}}
--
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/9280#comment:1>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online
More information about the tor-bugs
mailing list