Sha256: 339ab31a4d524150204ee52d45ce992fcb012d3474656fda7ead56d30dbfbfef
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # plugins don't seem to be auto-loaded from the bundle require 'vagrant-omnibus' Vagrant.configure("2") do |config| config.vm.define :new_chef do |new_chef_config| new_chef_config.vm.box = "opscode-ubuntu-12.04" new_chef_config.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box" new_chef_config.omnibus.chef_version = :latest new_chef_config.vm.provision :chef_solo do |chef| chef.cookbooks_path = File.expand_path("../../../support/cookbooks", __FILE__) chef.add_recipe "chef-inator" end end config.vm.define :old_chef do |old_chef_config| old_chef_config.vm.box = "opscode-centos-6.5" old_chef_config.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-6.5_chef-provisionerless.box" old_chef_config.omnibus.chef_version = '10.24.0' old_chef_config.vm.provision :chef_solo do |chef| chef.cookbooks_path = File.expand_path("../../../support/cookbooks", __FILE__) chef.add_recipe "chef-inator" end end config.vm.define :chef_already_installed do |installed_config| installed_config.vm.box = 'opscode-ubuntu-12.04-chef-11.4.4' installed_config.vm.box_url = 'https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_chef-11.4.4.box' installed_config.omnibus.chef_version = '11.4.4' installed_config.vm.provision :chef_solo do |chef| chef.cookbooks_path = File.expand_path("../../../support/cookbooks", __FILE__) chef.add_recipe "chef-inator" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-omnibus-1.2.1 | test/acceptance/virtualbox/Vagrantfile |