-
Notifications
You must be signed in to change notification settings - Fork 35
/
.kitchen.yml
54 lines (51 loc) · 979 Bytes
/
.kitchen.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-13.04
run_list:
- recipe[apt::default]
- name: debian-6.0.8
run_list:
- recipe[apt::default]
- name: debian-7.2.0
run_list:
- recipe[apt::default]
- name: centos-6.5
- name: fedora-20
- name: freebsd-9.2
suites:
- name: default
run_list:
- recipe[mod_security::default]
attributes:
excludes:
- centos-6.5
- fedora-20
- freebsd-9.2
- name: rhel
run_list:
- recipe[mod_security::default]
attributes:
excludes:
- ubuntu-12.04
- ubuntu-13.04
- debian-6.0.8
- debian-7.2.0
- freebsd-9.2
- name: freebsd
run_list:
- recipe[mod_security::default]
attributes:
excludes:
- centos-6.5
- fedora-20
- ubuntu-12.04
- ubuntu-13.04
- debian-6.0.8
- debian-7.2.0