Sha256: 9709c5fb98e54af92fb94161d24a5bae53c9fc385ce6aeba6f2b8cc974524a00
Contents?: true
Size: 680 Bytes
Versions: 4
Compression:
Stored size: 680 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", , "--hiera_config /vagrant/hiera.yaml"]<% 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
opskeleton-0.1.5 | templates/vagrant.erb |
opskeleton-0.1.4 | templates/vagrant.erb |
opskeleton-0.1.3 | templates/vagrant.erb |
opskeleton-0.1.2 | templates/vagrant.erb |