forked from sous-chefs/ossec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
47 lines (43 loc) · 931 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
driver:
name: vagrant
chef_version: current
provisioner:
name: chef_zero
data_bags_path: 'test/fixtures/data_bags'
verifier:
name: inspec
platforms:
- name: centos-6.9
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.7
run_list: apt::default
- name: fedora-25
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: client
run_list:
- recipe[ossec::client]
- name: server
run_list:
- recipe[ossec::server]
- name: agent_auth
run_list:
- recipe[ossec::agent_auth]
attributes:
ossec:
agent_server_ip: 10.0.2.2
- name: authd
run_list:
- recipe[ossec::authd]
driver_config:
network:
- ['forwarded_port', { guest: 1514, host: 1514, protocol: 'udp' }]
- ['forwarded_port', { guest: 1515, host: 1515, protocol: 'tcp' }]
includes:
- centos-7.3
- debian-8.7