├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile └── vagrant_rancheros_guest_plugin.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.box 2 | .vagrant 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/os-vagrant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/os-vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/os-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /vagrant_rancheros_guest_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/os-vagrant/HEAD/vagrant_rancheros_guest_plugin.rb --------------------------------------------------------------------------------