Sha256: e734018d78c4f47251c2240e4b343e2c7f335ab441bd09c8370d83d28acd71cf
Contents?: true
Size: 640 Bytes
Versions: 6
Compression:
Stored size: 640 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant::Config.run do |config| config.vm.define :<%= name%> do |<%= name%>| <%= name%>.vm.box = '<%= box %>' <%= name%>.vm.network :bridged <%= name%>.vm.customize ['modifyvm', :id, '--memory', 2048, '--cpus', 4] <%= name%>.vm.host_name = '<%= name %>' <%= name%>.vm.provision :puppet, :options => ["--modulepath=/vagrant/modules:/vagrant/static-modules"]<% if(box.include?('centos')) %> # https://github.com/mitchellh/vagrant/issues/713 config.vm.customize ['setextradata', :id, 'VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root', '1'] <% end %> end end
Version data entries
6 entries across 6 versions & 1 rubygems