forked from snormore/couchbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
32 lines (22 loc) · 795 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
32
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = '2'
Vagrant.require_version '>= 1.5.0'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.hostname = 'cs-geronimo-berkshelf'
config.ssh.username = 'vagrant'
config.ssh.password = 'vagrant'
if Vagrant.has_plugin?('vagrant-omnibus')
config.omnibus.chef_version = 'latest'
end
config.vm.box = 'bento/centos-6.7'
config.vm.network :private_network, type: 'dhcp'
config.berkshelf.enabled = true
config.vm.provision :chef_solo do |chef|
chef.json = {
}
chef.data_bags_path = File.expand_path('test/integration/data_bags', __FILE__)
chef.run_list = ['recipe[cs-geronimo::default]']
end
end