Sha256: d9e6af5b1f46a03eac0a8e4f47ebc12e9a564fc17e25ed247f50b41554a1d78d
Contents?: true
Size: 541 Bytes
Versions: 3
Compression:
Stored size: 541 Bytes
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.omnibus.chef_version = :latest config.vm.box = "canonical-ubuntu-12.04" config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box" config.vm.provision :chef_solo do |chef| chef.cookbooks_path = File.expand_path("../../../support/cookbooks", __FILE__) chef.add_recipe "chef-inator" end end
Version data entries
3 entries across 3 versions & 2 rubygems