Sha256: 20304794d1778f93e1402b55dcf4654bb69647215961fa19fe881123169b12a8

Contents?: true

Size: 732 Bytes

Versions: 9

Compression:

Stored size: 732 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|

  bridge = ENV['VAGRANT_BRIDGE']
  bridge ||= 'eth0'
  env  = ENV['PUPPET_ENV']
  env ||= 'dev'

  config.vm.box = '<%=box%>' <%if(options['box_url']) %>
  <%="config.vm.box_url = '#{options['box_url']}'"%> <%end%>
  config.vm.guest = :freebsd
  config.vm.network :public_network, :bridge => bridge
  config.vm.network "private_network", ip: "10.0.1.10"
  config.vm.hostname = '<%=name%>.local'

  config.vm.provider :virtualbox do |vb|
    vb.customize ['modifyvm', :id, '--memory', 2048, '--cpus', 2]
  end

  config.vm.synced_folder ".", "/vagrant", :nfs => true, id: "vagrant-root"
  config.vm.provision "shell", inline: 'cd /vagrant && ./run.sh'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
opskeleton-0.6.4 templates/vagrant_bsd.erb
opskeleton-0.6.3 templates/vagrant_bsd.erb
opskeleton-0.6.2 templates/vagrant_bsd.erb
opskeleton-0.6.0 templates/vagrant_bsd.erb
opskeleton-0.5.3 templates/vagrant_bsd.erb
opskeleton-0.5.2 templates/vagrant_bsd.erb
opskeleton-0.5.1 templates/vagrant_bsd.erb
opskeleton-0.5.0 templates/vagrant_bsd.erb
opskeleton-0.4.9 templates/vagrant_bsd.erb