Sha256: 8ec62fe120649dc17f991ff3a3bc38e94af3d2b21694b95d4eea8e87b67e12f5
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 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 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-omnibus-1.2.0 | test/acceptance/virtualbox/Vagrantfile |