blob: 5a93822b5d8a2c40697f178bda0963271c766697 (
plain)
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
|
---
driver:
name: vagrant
customize:
cpus: 4
memory: 2048
provisioner:
name: chef_zero
github: "opscode/chef"
branch: <%= %x(git rev-parse HEAD) %>
require_chef_omnibus: true
data_path: test/fixtures
platforms:
# - name: ubuntu-10.04
# run_list: apt::default
- name: ubuntu-12.04
run_list: apt::default
# - name: ubuntu-13.04
# run_list: apt::default
- name: centos-6.4
run_list: yum-epel::default
- name: centos-5.10
run_list: yum-epel::default
suites:
- name: webapp
run_list:
- recipe[apt::default]
- recipe[webapp::default]
attributes:
|