mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-08 20:36:46 +10:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
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
|