-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
32 lines (24 loc) · 1022 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
# Start them with a gui window
config.vm.boot_mode = :gui
#
# Targets
#
config.vm.define :centos5 do |target_config|
target_config.vm.box = "centos-5.6-x86_64-netinstall-4.1.6"
target_config.vm.box_url = "http://dl.dropbox.com/u/9227672/#{target_config.vm.box}.box"
target_config.vm.provision :shell, :inline => '/vagrant/setup.sh'
target_config.vm.host_name = 'buildhost-centos5'
target_config.vm.network :hostonly, "192.168.50.5"
end
config.vm.define :centos6 do |target_config|
# target_config.vm.box = "CentOS-6-x86_64-buildhost-2012121701"
target_config.vm.box = "CentOS-6.3-x86_64-minimal"
target_config.vm.box_url = "https://dl.dropbox.com/u/7225008/Vagrant/#{target_config.vm.box}.box"
target_config.vm.provision :shell, :inline => '/vagrant/setup.sh'
target_config.vm.host_name = 'buildhost-centos6'
target_config.vm.network :hostonly, "192.168.50.6"
end
end