I'm reading the Vagrant docs on boxes and not understanding the difference between:
vagrant box add hashicorp/precise32
; vs.vagrant init hashicorp/precise32
The latter fetches the hashicorp/precise32
box from a remote catalog, and then creates a Vagrantfile
for spinning up an instance of that box. But I don't see how that's different than the box add
method.
So I ask: What's the difference between these two commands and when is it appropriate to use each of them?