forked from sous-chefs/php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
41 lines (38 loc) · 800 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
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.1
- name: debian-7.8
run_list: apt::default
- name: debian-8.1
run_list: apt::default
- name: fedora-21
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-14.04
run_list: apt::default
- name: freebsd-10.1
driver:
ssh:
shell: '"/bin/sh"'
suites:
- name: package_install
run_list:
- recipe[php::default]
- name: source_install
run_list:
- recipe[php::default]
attributes: { php: { install_method: "source" } }
- name: fpm_test
run_list:
- recipe[php::default]
- recipe[fpm_test]
excludes:
- centos-5.11
- centos-6.7
- fedora-21
- freebsd-10.1