Skip to content

Commit

Permalink
add Vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nickethier committed Oct 29, 2012
1 parent 0f2c066 commit 985f24d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Vagrantfile
@@ -0,0 +1,25 @@
Vagrant::Config.run do |config|
config.vm.define :'rpm-i386' do |rpm32|
rpm32.vm.box = "rpm-i386"
rpm32.vm.box_url = "https://dl.dropbox.com/u/87191017/centos-5-i386.box"
config.vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end

config.vm.define :'rpm-x86_64' do |rpm64|
rpm64.vm.box = "rpm-x86_64"
rpm64.vm.box_url = "https://dl.dropbox.com/u/87191017/centos-5-x86_64.box"
config.vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end

config.vm.define :'deb-i386' do |deb32|
deb32.vm.box = "deb-i386"
deb32.vm.box_url = "https://dl.dropbox.com/u/87191017/debian-5-i386.box"
config.vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end

config.vm.define :'deb-x86_64' do |deb64|
deb64.vm.box = "deb-x86_64"
deb64.vm.box_url = "https://dl.dropbox.com/u/87191017/debian-5-x86_64.box"
config.vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end
end

0 comments on commit 985f24d

Please sign in to comment.