Sha256: 204577b2a4bc1609c49e9d04a0056dacba024dfc3176f3e9b0b7d628daaa4ab1

Contents?: true

Size: 589 Bytes

Versions: 11

Compression:

Stored size: 589 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.require_version ">= 1.5.0"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.hostname = "validation-berkshelf"
  config.omnibus.chef_version = :latest
  config.vm.box = "chef/ubuntu-14.04"
  config.vm.network :private_network, type: "dhcp"
  config.vm.synced_folder "./pkg", "/vagrant_data"

  config.vm.provision :chef_solo do |chef|
    chef.run_list = [
      "recipe[validation::default]"
    ]
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
chef-validation-0.2.3 Vagrantfile
chef-validation-0.2.2 Vagrantfile
chef-validation-0.2.1 Vagrantfile
chef-validation-0.2.0 Vagrantfile
chef-validation-0.1.6 Vagrantfile
chef-validation-0.1.5 Vagrantfile
chef-validation-0.1.4 Vagrantfile
chef-validation-0.1.3 Vagrantfile
chef-validation-0.1.2 Vagrantfile
chef-validation-0.1.1 Vagrantfile
chef-validation-0.1.0 Vagrantfile