Sha256: 0cef332dd56bea151cece6ca28a3ed280a7134372d426b97667b83b2ce6fc6b3

Contents?: true

Size: 727 Bytes

Versions: 10

Compression:

Stored size: 727 Bytes

Contents

Vagrant.configure("2") do |config|
  config.vm.box = "base"
  config.vm.box_url = "http://domain.com/path/to/above.box"

  config.vm.network :forwarded_port, guest: 80, host: 8080
  config.vm.network :private_network, ip: "10.0.0.2"

  config.vm.synced_folder "C:/Users/Matt/nugrant", "/vagrant_data"

  config.vm.provider :virtualbox do |virtualbox|
    virtualbox.customize ["modifyvm", :id, "--memory", "256"]
  end

  config.vm.provision :chef_solo do |chef|
    chef.cookbooks_path = "C:\Users\Matt\Work\kitchen\cookbooks"
    chef.roles_path = "C:\Users\Matt\Work\kitchen\roles"
    chef.nodes_path = "C:\Users\Matt\Work\kitchen\nodes"

    chef.add_recipe "mysql"
    chef.add_role "web"
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
nugrant-2.1.3 test/resources/vagrantfiles/v2.real
nugrant-2.1.2 test/resources/vagrantfiles/v2.real
nugrant-2.1.1 test/resources/vagrantfiles/v2.real
nugrant-2.1.0 test/resources/vagrantfiles/v2.real
nugrant-2.0.2 test/resources/vagrantfiles/v2.real
nugrant-2.0.1 test/resources/vagrantfiles/v2.real
nugrant-2.0.0 test/resources/vagrantfiles/v2.real
nugrant-2.0.0.rc1 test/resources/vagrantfiles/v2.real
nugrant-2.0.0.pre2 test/resources/vagrantfiles/v2.real
nugrant-2.0.0.pre1 test/resources/vagrantfiles/v2.real