forked from peplin/asterisk-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.kitchen.yml
65 lines (60 loc) · 1.16 KB
/
.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
55
56
57
58
59
60
61
62
63
64
65
---
driver:
name: vagrant
customize:
memory: 1024
provisioner:
name: chef_solo
platforms:
- name: centos-6.5
run_list: asterisk-test
- name: fedora-19
run_list: asterisk-test
- name: fedora-20
run_list: asterisk-test
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-10.04
run_list: apt::default
- name: debian-7.4
run_list: apt::default
suites:
- name: package-native
run_list: ['recipe[asterisk]']
attributes: {
asterisk: {
install_method: 'package'
}
}
- name: package-digium
run_list: ['recipe[asterisk]']
attributes: {
asterisk: {
install_method: 'package',
package: {
repo: {
enable: true
}
}
}
}
excludes: ["fedora-19", "fedora-20"]
- name: source
run_list: ['recipe[asterisk]']
attributes: {
asterisk: {}
}
- name: unimrcp-pkg
run_list: ['recipe[asterisk]', 'recipe[asterisk::unimrcp]']
attributes: {
asterisk: {
install_method: 'package'
}
}
- name: unimrcp-src
run_list: ['recipe[asterisk]', 'recipe[asterisk::unimrcp]']
attributes: {
asterisk: {}
}