Skip to content
This repository has been archived by the owner on Nov 25, 2017. It is now read-only.

Commit

Permalink
Added a Vagrantfile for the machines needed for the class.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobian committed Mar 9, 2011
1 parent aa78f5a commit 28a3cd5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions vagrant/.vagrant
@@ -0,0 +1 @@
{"active":{"web1":"37c75b77-b4c7-41f2-aedf-0f8115b106a4","web2":"317b7e93-7817-49ce-ab10-96bba8828c30","default":"500fc292-5e93-4b30-b361-21504a39216f","db1":"85dd57bd-2393-458d-87d1-6f5438ac3b3e"}}
25 changes: 25 additions & 0 deletions vagrant/Vagrantfile
@@ -0,0 +1,25 @@
Vagrant::Config.run do |config|
config.vm.define :web1 do |config|
config.vm.box = "lucid32"
config.vm.network('33.33.33.10')
config.vm.customize do |vm|
vm.memory_size = 256
end
end

config.vm.define :web2 do |config|
config.vm.box = "lucid32"
config.vm.network('33.33.33.11')
config.vm.customize do |vm|
vm.memory_size = 256
end
end

config.vm.define :db1 do |config|
config.vm.box = "lucid32"
config.vm.network('33.33.33.20')
config.vm.customize do |vm|
vm.memory_size = 256
end
end
end

0 comments on commit 28a3cd5

Please sign in to comment.