I am on Ubuntu 14.10 64.x. Using Vagrant, Virtualbox I can see all the boxes with the vagrant command
vagrant box list
An example output may be this:
geerlingguy/ubuntu1404 (virtualbox, 1.0.4)
hashicorp/precise64 (virtualbox, 1.1.0)
panamax-coreos-box-647.2.0 (virtualbox, 0)
precise-vbox-4.2.18.2 (virtualbox, 0)
precise32 (virtualbox, 0)
precise64current (virtualbox, 0)
ubuntu-precise12042-x64-vbox43 (virtualbox, 0)
ubuntu/trusty64 (virtualbox, 0.10)
As you can see some boxes may be duplicates or almost the same. Any time a Vagrantfile needs a box which name does not exist in the system vagrant starts downloading it.
I would like to be able to create aliases for each box in order Vagrant can find them on the system. For example this box
ubuntu/trusty64
may have these aliases set by me of course:
ubuntu/trusty64
trusty64
ubuntu/14.04
So I am asking. Is there any vagrant plugin or script to do this?