├── .gitignore ├── LICENSE.txt ├── Vagrantfile ├── bin ├── link-to-bento.ps1 └── link-to-bento.sh ├── http ├── preseed-hyperv.cfg └── preseed.cfg ├── readme.md └── scripts ├── amd64.sh └── arm.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | *.box 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/link-to-bento.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/bin/link-to-bento.ps1 -------------------------------------------------------------------------------- /bin/link-to-bento.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/bin/link-to-bento.sh -------------------------------------------------------------------------------- /http/preseed-hyperv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/http/preseed-hyperv.cfg -------------------------------------------------------------------------------- /http/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/http/preseed.cfg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/amd64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/scripts/amd64.sh -------------------------------------------------------------------------------- /scripts/arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/settler/HEAD/scripts/arm.sh --------------------------------------------------------------------------------