Sha256: 99ae753cef49fe029fdea6d43423b7bc131c3ab28983591ecda678db71ea0188

Contents?: true

Size: 597 Bytes

Versions: 6

Compression:

Stored size: 597 Bytes

Contents

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

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

  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

6 entries across 6 versions & 1 rubygems

Version Path
bourdain-1.6.1 templates/cookbook/Vagrantfile
bourdain-1.6.0 templates/cookbook/Vagrantfile
bourdain-1.5.1 templates/cookbook/Vagrantfile
bourdain-1.5.0 templates/cookbook/Vagrantfile
bourdain-1.4.1 templates/cookbook/Vagrantfile
bourdain-1.4.0 templates/cookbook/Vagrantfile