Skip to content

Commit

Permalink
Give unique name to downloaded box
Browse files Browse the repository at this point in the history
As the default virtualbox from vagrant is called "precise64" and this may be likely to be already present in your environment the installation and provisioning will fail due to unresolved dependencies.
The dependencies are only met in the virtualbox file you provide in config.vm.box_url, so you have to assure that this one is downloaded and used and not the default precise64 from the vagrant maintainer.
  • Loading branch information
ipf committed Mar 10, 2014
1 parent 7528e47 commit 7e4d856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vagrantfile
Expand Up @@ -45,7 +45,7 @@ Vagrant.configure("2") do |config|
# please see the online documentation at vagrantup.com.

# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise64"
config.vm.box = "dspace-precise64"

# BEGIN Vagrant-Cachier configuration ####################################
# check for the presence of the Vagrant-Cachier plugin before attempting
Expand Down

0 comments on commit 7e4d856

Please sign in to comment.