forked from zuazo/dovecot-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
72 lines (69 loc) · 1.68 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
66
67
68
69
70
71
72
---
driver:
name: vagrant
network:
- ["forwarded_port", {guest: 110, host: 8110, auto_correct: true}]
- ["forwarded_port", {guest: 995, host: 8995, auto_correct: true}]
- ["forwarded_port", {guest: 143, host: 8143, auto_correct: true}]
- ["forwarded_port", {guest: 993, host: 8993, auto_correct: true}]
provisioner:
name: chef_zero
data_bags_path: ./test/data_bags
# client_rb:
# treat_deprecation_warnings_as_errors: true # WiP on some depends
platforms:
- name: centos-6.7
- name: centos-7.2
- name: centos-7.4
- name: centos-7.5
- name: fedora-26
- name: fedora-28
- name: oracle-6.9
- name: oracle-7.4
- name: debian-7.11
run_list: recipe[apt]
- name: debian-8.9
run_list: recipe[apt]
- name: debian-8.10
run_list: recipe[apt]
- name: debian-9.2
run_list: recipe[apt]
- name: debian-9.3
run_list: recipe[apt]
- name: debian-9.4
run_list: recipe[apt]
- name: ubuntu-14.04
run_list: recipe[apt]
- name: ubuntu-16.04
run_list: recipe[apt]
- name: ubuntu-18.04
run_list: recipe[apt]
- name: opensuse-leap-42
suites:
- name: default
run_list:
- recipe[dovecot_test]
- name: ldap
run_list:
- recipe[dovecot_test::ldap]
excludes:
# does not use (deprecated) slapd.conf anymore,
# and openldap cookbook is not up-to-date with this change yet
- fedora-26
- fedora-28
- name: attributes
run_list:
- recipe[dovecot_test::attributes]
- name: create_pwfile
run_list:
- recipe[dovecot_test::create_pwfile]
excludes:
# old versions of Dovecot does not support default_field_values
- centos-6.7
- oracle-6.9
# by default does not have 'snakeoil' self-signed cert and key
- debian-8.9
- debian-8.10
- debian-9.2
- debian-9.3
- debian-9.4