You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
222 B
Plaintext
10 lines
222 B
Plaintext
11 years ago
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.define "precise32" do |ubuntu|
|
||
|
ubuntu.vm.box = "hashicorp/precise32"
|
||
|
end
|
||
|
|
||
|
config.vm.define "precise64" do |ubuntu|
|
||
|
ubuntu.vm.box = "hashicorp/precise64"
|
||
|
end
|
||
|
end
|