Sha256: 31be18c1f9ab50c84afca9ffaef6d4910a279caddca19828f6626a9c9e5e19d9

Contents?: true

Size: 455 Bytes

Versions: 2

Compression:

Stored size: 455 Bytes

Contents

Vagrant::Config.run do |config|
  config.vm.box = "base"
  config.vm.customize do |vm|
    vm.name = "casper"
    vm.memory_size = 512
  end

  config.vm.network("33.33.33.10")
  config.vm.share_folder("v-root", "~/casper", "..", :nfs => true)
  config.vm.provisioner = :chef_solo
  config.vm.boot_mode   = :gui

  config.chef.run_list = %w(
    recipe[application::vagrant]
    recipe[rvm]
    recipe[testing]
  )
  
  config.chef.log_level = :debug
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
casper-0.0.1.1 test/Vagrantfile
casper-0.0.1 test/Vagrantfile