Sha256: 03cbec45f19831180d09d7991fdd5e865f021b4444fcda1308430a9f5ba43c92

Contents?: true

Size: 571 Bytes

Versions: 1

Compression:

Stored size: 571 Bytes

Contents

require 'json'
Vagrant::Config.run do |config|
  config.vm.box       = "lucid64"
  config.vm.box_url   = "http://files.vagrantup.com/lucid64.box"
  config.vm.host_name = <%= @vm_host_name.inspect %>
  config.vm.network     "172.25.5.5"
  config.vm.provision :shell, :path => "upgrade-chef.sh"
  config.vm.provision :chef_solo do |chef|
  chef.cookbooks_path = <%= @cookbooks_path.inspect %>
    chef.roles_path = "roles"
    chef.data_bags_path = "data_bags"
    json = JSON.parse File.read('dna.json')
    chef.run_list = json['run_list']
    chef.json = json
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
elzar-0.0.1 lib/elzar/templates/Vagrantfile.erb