Sha256: 9143e04c0769f70341996252857d091f6a341c93b79387793bef2884ca545505

Contents?: true

Size: 690 Bytes

Versions: 1

Compression:

Stored size: 690 Bytes

Contents

#!/usr/bin/env ruby
# -*- mode: ruby -*-
# vi: set ft=ruby :
ENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox'
ENV['PATH'] = '/opt/chefdk/bin:/usr/local/bin:/usr/bin:%s' % ENV['PATH']

Vagrant.configure('2') do |config|
  config.omnibus.chef_version = :latest
  config.berkshelf.enabled = true
  config.cache.auto_detect = true
  config.cache.scope = :box

  config.vm.define 'vagrant' do |node|
    node.vm.box = 'bento/ubuntu-14.04'
    node.vm.hostname = 'vagrant'
    node.vm.provision :chef_solo do |chef|
      chef.log_level = :info
      chef.json = {}
      chef.run_list = %w(
        recipe[apt]
        recipe[<%= name %>]
        recipe[minitest-handler]
      )
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bourdain-1.6.3 templates/cookbook/Vagrantfile