Skip to content

Commit

Permalink
updated vagrant box
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoodall committed Apr 26, 2016
1 parent b8d4488 commit 4f7e1b3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
options = {
:ip => "10.10.10.100",
:hostname => "stucco",
# By default the VM will be allocated 10gb of memory
# By default the VM will be allocated 12 gb of memory
:memory => "12288",
# By default the VM will be allocated 4 cores
:cores => "4"
Expand All @@ -25,12 +25,10 @@ Vagrant.configure("2") do |config|
end

config.vm.hostname = options[:hostname]

# If you are on a Host without Virtualization in the BIOS, try changing to "ubuntu/trusty32"
config.vm.box = "ubuntu/trusty64"
config.vm.box_version = "14.04"
config.vm.box = "bento/ubuntu-14.04"
config.vm.box_version = "2.2.3"
config.vm.box_check_update = false

# Config for vagrant-cachier - caches apt packages (and similar on other systems)
# See http://fgrehm.viewdocs.io/vagrant-cachier
if Vagrant.has_plugin?("vagrant-cachier")
Expand Down

0 comments on commit 4f7e1b3

Please sign in to comment.