4d70c188e8
This removes the 'include' parameter for PostgreSQL 8.1 as it was failing on Centos 5. Also added Centos 5 system tests using our new Vagrant boxes. Signed-off-by: Ken Barber <ken@bob.sh>
12 lines
344 B
Ruby
12 lines
344 B
Ruby
require File.expand_path(File.join(__FILE__, '../../../../support/vagrant_common'))
|
|
|
|
Vagrant::Config.run do |config|
|
|
|
|
config.vm.define :centos5 do |vm_config|
|
|
vm_config.vm.box = "centos-58-x64"
|
|
vm_config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/centos-58-x64.box"
|
|
end
|
|
|
|
apply_common_vagrant_config(config)
|
|
|
|
end
|