├── .github └── FUNDING.yml ├── .gitignore └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: geerlingguy 4 | patreon: geerlingguy 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | packer_cache/* 2 | *.box 3 | iso/* 4 | .vagrant/* 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Packer Build - Debian 10 minimal Vagrant Box 2 | 3 | **DEPRECATED**: This Packer build has been moved to a new consolidated project: https://github.com/geerlingguy/packer-boxes 4 | 5 | The public box is still available and updated on Vagrant Cloud: [`geerlingguy/debian10`](https://app.vagrantup.com/geerlingguy/boxes/debian10), but the build configuration has been moved to the consolidated project. 6 | --------------------------------------------------------------------------------