Sha256: 9e7585dd7a1a42c674f501792ae27a8a55bf62fb525892f4a4533b3efaf8557e

Contents?: true

Size: 572 Bytes

Versions: 1

Compression:

Stored size: 572 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 = "elzar.thinkrelevance.com"
  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 = ["site-cookbooks", "cookbooks"]
    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 Vagrantfile