I can't figure out how to get included files from a packaged vagrant box.
The package is created with:
$ vagrant package --include mydirectory/ --output mypackage.box
Then the box is added
$ vagrant box add mypackage.box --name myPackageWithFiles
Then init and vagrant up
$ vagrant init myPackageWithFiles
$ vagrant up
But when I ssh into the newly created vagrant box, there is no "mydirectory/"
I do see it on my local machine though:
$ ls ~/.vagrant.d/boxes/myPackageWithFiles/0/virtualbox/include/
mydirectory/
How do I get this directory into my vagrant box? Do I have to add something to the Vagrantfile?