forked from chr4-cookbooks/resolvconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
43 lines (38 loc) · 804 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
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.10
- name: ubuntu-14.04
- name: ubuntu-12.04
- name: debian-7.2.0
- name: debian-6.0.8
suites:
- name: all
run_list:
- recipe[minitest-handler]
- recipe[resolvconf]
attributes:
resolvconf:
nameserver: [ '8.8.8.8', '8.8.4.4' ]
domain: 'example.com'
search: [ test.com, example.com ]
sortlist: [ '130.155.160.0/255.255.240.0 130.155.0.0' ]
options: rotate
- name: without-options
run_list:
- recipe[minitest-handler]
- recipe[resolvconf]
attributes:
resolvconf:
nameserver: '8.8.8.8'
search: test.com
- name: only-nameserver
run_list:
- recipe[minitest-handler]
- recipe[resolvconf]
attributes:
resolvconf:
nameserver: '8.8.8.8'