gitextract_njy126on/ ├── .gitignore ├── .rspec ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib/ │ ├── vagrant-omnibus/ │ │ ├── action/ │ │ │ └── install_chef.rb │ │ ├── config.rb │ │ ├── plugin.rb │ │ └── version.rb │ └── vagrant-omnibus.rb ├── locales/ │ └── en.yml ├── test/ │ ├── acceptance/ │ │ ├── aws/ │ │ │ └── Vagrantfile │ │ ├── digital_ocean/ │ │ │ └── Vagrantfile │ │ ├── linode/ │ │ │ └── Vagrantfile │ │ ├── rackspace/ │ │ │ └── Vagrantfile │ │ └── virtualbox/ │ │ └── Vagrantfile │ ├── support/ │ │ └── cookbooks/ │ │ └── chef-inator/ │ │ ├── README.md │ │ ├── metadata.rb │ │ └── recipes/ │ │ └── default.rb │ └── unit/ │ ├── spec_helper.rb │ └── vagrant-omnibus/ │ ├── config_spec.rb │ └── plugin_spec.rb └── vagrant-omnibus.gemspec