Sha256: 99ecd58808dc0793ca6b469706653da5b6d861407951c811741b2ecd34ce00b8
Contents?: true
Size: 1.09 KB
Versions: 9
Compression:
Stored size: 1.09 KB
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # # Auto-generated by cucumber-chef v#{Cucumber::Chef::VERSION} on #{Time.now.utc} -- DO NOT EDIT! # Vagrant v1 Configuration ########################### Vagrant::Config.run do |config| config.vm.define "test-lab-#{ENV['USER']}".downcase do |test_lab| test_lab.vm.box = "precise64" test_lab.vm.box_url = "http://files.vagrantup.com/precise64.box" test_lab.vm.network :hostonly, "<%= @ip %>" test_lab.vm.customize ["modifyvm", :id, "--cpus", <%= @cpus %>] test_lab.vm.customize ["modifyvm", :id, "--memory", <%= @memory %>] end end # Vagrant v2 Configuration ########################### Vagrant.configure("2") do |config| config.vm.define "test-lab-#{ENV['USER']}".downcase do |test_lab| test_lab.vm.box = "precise64" test_lab.vm.box_url = "http://files.vagrantup.com/precise64.box" test_lab.vm.network :private_network, :ip => "<%= @ip %>" test_lab.vm.provider :virtualbox do |vb| vb.customize ["modifyvm", :id, "--cpus", <%= @cpus %>] vb.customize ["modifyvm", :id, "--memory", <%= @memory %>] end end end
Version data entries
9 entries across 9 versions & 1 rubygems