I started using Vagrant today, so excuse for the basic question.
Considering I didn't see any knowledge level associated with this discusssion group, I guess a beginner question won't be an issue, so here it goes:
I created a dir called "vagrant_puphet" and executed vagrant init puphpet/ubuntu1404-x64 to create the vagrant file.
I changed the vagrant file to point to my desired Vagrant box:
config.vm.box = "puphpet/boxes/ubuntu1404-x64;"
When I execute "vagrant up", I'm getting:
C:\HashiCorp\Vagrant\bin\vagrant_puphet>vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'puphpet/boxes/ubuntu1404-x64;' could not be found. Attempting to find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
==> default: Box file was not detected as metadata. Adding it directly...
==> default: Adding box 'puphpet/boxes/ubuntu1404-x64;' (v0) for provider: virtualbox
default: Downloading: puphpet/boxes/ubuntu1404-x64;
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
Couldn't open file /C:/HashiCorp/Vagrant/bin/vagrant_puphet/puphpet/boxes/ubuntu1404-x64;
What am I doing wrong?
regards