Sha256: 45012698b16f80059f02ce0535edf2ec2c10a6501be1e7d90b3540bf14280070
Contents?: true
Size: 506 Bytes
Versions: 1
Compression:
Stored size: 506 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 %>] recipe[minitest-handler] ) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bourdain-1.3.3 | templates/cookbook/Vagrantfile |