Sha256: 338d800317f3e587a7791ce08f38935c7a4d0bad014c5061f56dafa1eb21fbe5

Contents?: true

Size: 473 Bytes

Versions: 13

Compression:

Stored size: 473 Bytes

Contents

#!/usr/bin/env ruby
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
  config.omnibus.chef_version = :latest
  config.berkshelf.enabled = true
  config.vm.define 'vagrant' do |node|
    node.vm.box = 'chef/ubuntu-14.04'
    node.vm.hostname = 'vagrant'
    node.vm.provision :chef_solo do |chef|
      chef.log_level = :debug
      chef.json = {}
      chef.run_list = %w(
        recipe[apt]
        recipe[<%= name %>]
      )
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
bourdain-1.3.2 templates/cookbook/Vagrantfile
bourdain-1.3.1 templates/cookbook/Vagrantfile
bourdain-1.3.0 templates/cookbook/Vagrantfile
bourdain-1.2.22 templates/cookbook/Vagrantfile
bourdain-1.2.21 templates/cookbook/Vagrantfile
bourdain-1.2.20 templates/cookbook/Vagrantfile
bourdain-1.2.19 templates/cookbook/Vagrantfile
bourdain-1.2.18 templates/cookbook/Vagrantfile
bourdain-1.2.17 templates/cookbook/Vagrantfile
bourdain-1.2.16 templates/cookbook/Vagrantfile
bourdain-1.2.15 templates/cookbook/Vagrantfile
bourdain-1.2.14 templates/cookbook/Vagrantfile
bourdain-1.2.13 templates/cookbook/Vagrantfile