forked from sous-chefs/postfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
54 lines (45 loc) · 922 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_plugin: vagrant
driver_config:
require_chef_omnibus: true
provisioner:
data_path: test/shared
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: ubuntu-10.04
run_list:
- recipe[apt]
- name: centos-6.5
- name: centos-5.10
- name: omnios-r151006c
driver:
box: omnios-r151006c
box_url: http://omnios.omniti.com/media/OmniOS_Text_r151006c.iso
run_list:
- recipe[fake::omnios]
suites:
- name: default
run_list:
- recipe[postfix]
- name: aliases
run_list:
- recipe[postfix::aliases]
- name: client
run_list:
- recipe[postfix::client]
- name: server
run_list:
- recipe[postfix::server]
- name: sasl_auth
run_list:
- recipe[postfix::sasl_auth]
attributes:
postfix:
main:
relayhost: "localhost"
smtp_sasl_auth_enable: "yes"
sasl:
smtp_sasl_user_name: "kitchenuser"
smtp_sasl_passwd: "not-a-real-thing"