├── .gitignore ├── .rspec ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── vagrant-omnibus.rb └── vagrant-omnibus │ ├── action │ └── install_chef.rb │ ├── config.rb │ ├── plugin.rb │ └── version.rb ├── locales └── en.yml ├── test ├── acceptance │ ├── aws │ │ └── Vagrantfile │ ├── digital_ocean │ │ └── Vagrantfile │ ├── linode │ │ └── Vagrantfile │ ├── rackspace │ │ └── Vagrantfile │ ├── virtualbox │ │ └── Vagrantfile │ └── vmware_fusion │ │ └── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --default-path test/unit 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/vagrant-omnibus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/lib/vagrant-omnibus.rb -------------------------------------------------------------------------------- /lib/vagrant-omnibus/action/install_chef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/lib/vagrant-omnibus/action/install_chef.rb -------------------------------------------------------------------------------- /lib/vagrant-omnibus/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/lib/vagrant-omnibus/config.rb -------------------------------------------------------------------------------- /lib/vagrant-omnibus/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/lib/vagrant-omnibus/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant-omnibus/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/lib/vagrant-omnibus/version.rb -------------------------------------------------------------------------------- /locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/locales/en.yml -------------------------------------------------------------------------------- /test/acceptance/aws/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/acceptance/aws/Vagrantfile -------------------------------------------------------------------------------- /test/acceptance/digital_ocean/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/acceptance/digital_ocean/Vagrantfile -------------------------------------------------------------------------------- /test/acceptance/linode/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/acceptance/linode/Vagrantfile -------------------------------------------------------------------------------- /test/acceptance/rackspace/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/acceptance/rackspace/Vagrantfile -------------------------------------------------------------------------------- /test/acceptance/virtualbox/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/acceptance/virtualbox/Vagrantfile -------------------------------------------------------------------------------- /test/acceptance/vmware_fusion/Vagrantfile: -------------------------------------------------------------------------------- 1 | ../virtualbox/Vagrantfile -------------------------------------------------------------------------------- /test/support/cookbooks/chef-inator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/support/cookbooks/chef-inator/README.md -------------------------------------------------------------------------------- /test/support/cookbooks/chef-inator/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/support/cookbooks/chef-inator/metadata.rb -------------------------------------------------------------------------------- /test/support/cookbooks/chef-inator/recipes/default.rb: -------------------------------------------------------------------------------- 1 | 2 | Chef::Log.info "CURSE YOU...Perry the Platypus!!!!" 3 | -------------------------------------------------------------------------------- /test/unit/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/unit/spec_helper.rb -------------------------------------------------------------------------------- /test/unit/vagrant-omnibus/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/unit/vagrant-omnibus/config_spec.rb -------------------------------------------------------------------------------- /test/unit/vagrant-omnibus/plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/test/unit/vagrant-omnibus/plugin_spec.rb -------------------------------------------------------------------------------- /vagrant-omnibus.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/vagrant-omnibus/HEAD/vagrant-omnibus.gemspec --------------------------------------------------------------------------------