Sha256: 405ab504aa150d60abef62bcd8176c758f406270030b2e3ead5a216c3b047681
Contents?: true
Size: 587 Bytes
Versions: 1
Compression:
Stored size: 587 Bytes
Contents
require "vagrant-shell" Vagrant.configure("2") do |config| config.vm.box = "<%= node[:vagrant][:box] %>" <% if node[:vagrant][:provision] && node[:vagrant][:provision][:shell] %> config.vm.provision :shell, :path => "<%= node[:vagrant][:provision][:shell][:path] %>" <% end %> config.ssh.username = "<%= node[:vagrant][:ssh_username] %>" config.vm.synced_folder ".", "/vagrant", :id => "vagrant-root", :disabled => true config.vm.provider :shell do |shell| shell.script = ENV['SHELL_SCRIPT'] shell.run_args = [ ENV['SHELL_ARGS'] ] end end # vi: set ft=ruby :
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tvd-vagrant-0.0.15 | cookbooks/vagrant/templates/default/Vagrantfile.docker.erb |