forked from aaronlippold/disa_stig-el7-hardening
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
90 lines (85 loc) · 2.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: centos-6.8
- name: centos-7.3
suites:
- name: centos7
excludes:
- centos-6.8
verifier:
inspec_tests:
- name: centos7
path: test/integration/centos7/inspec
run_list:
- recipe[auditd]
- recipe[stig::auditd]
- recipe[stig::auditd_rules]
- recipe[stig::fstab_tmp]
- recipe[stig::tcp_wrappers]
- recipe[stig::boot_settings]
- recipe[stig::proc_hard]
- recipe[stig::cis]
- recipe[stig::avahi_daemon]
- recipe[stig::ipv6]
- recipe[stig::dhcp]
- recipe[stig::mail_transfer_agent]
- recipe[stig::hosts]
- recipe[stig::rsyslog]
- recipe[logrotate::global]
- recipe[stig::sshd_config]
- recipe[stig::system_auth]
- recipe[stig::login_defs]
- recipe[stig::login_banner]
- recipe[stig::file_permissions]
- recipe[stig::audits]
- recipe[stig::audit_scripts]
- recipe[stig::su_restriction]
- recipe[stig::aide]
attributes: {
"auditd" : {
"ruleset" : "stig"
}
}
- name: centos6
excludes:
- centos-7.3
verifier:
inspec_tests:
- name: centos6
path: test/integration/centos6/inspec
run_list:
- recipe[auditd]
- recipe[stig::auditd]
- recipe[stig::auditd_rules]
- recipe[stig::fstab_tmp]
- recipe[stig::tcp_wrappers]
- recipe[stig::boot_settings]
- recipe[stig::proc_hard]
- recipe[stig::cis]
- recipe[stig::avahi_daemon]
- recipe[stig::ipv6]
- recipe[stig::dhcp]
- recipe[stig::mail_transfer_agent]
- recipe[stig::hosts]
- recipe[stig::rsyslog]
- recipe[logrotate::global]
- recipe[stig::sshd_config]
- recipe[stig::system_auth]
- recipe[stig::login_defs]
- recipe[stig::login_banner]
- recipe[stig::file_permissions]
- recipe[stig::audits]
- recipe[stig::audit_scripts]
- recipe[stig::su_restriction]
- recipe[stig::aide]
attributes: {
"auditd" : {
"ruleset" : "stig"
}
}