Skip to content

Commit

Permalink
Updates Vagrantfile
Browse files Browse the repository at this point in the history
* precise -> trusty
* Start in GUI mode now that X11 support is on the way

[skip ci]
  • Loading branch information
remram44 committed Feb 3, 2015
1 parent 2cd68ae commit 20492a4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ aptitude install -y make gcc sqlite3 libsqlite3-dev python2.7-dev python-virtual
SCRIPT

config.vm.define "x86" do |m|
m.vm.box = "hashicorp/precise32"
m.vm.box = "ubuntu/trusty32"
end

config.vm.define "x86_64", autostart: false do |m|
m.vm.box = "hashicorp/precise64"
m.vm.box = "ubuntu/trusty64"
end

config.vm.provider "virtualbox" do |v|
v.gui = true
v.memory = 1024
end
end

0 comments on commit 20492a4

Please sign in to comment.