mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
add aix test
This commit is contained in:
parent
bc503f080d
commit
821e95db05
1 changed files with 10 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
if os[:family] == 'freebsd'
|
case os[:family]
|
||||||
|
when 'freebsd'
|
||||||
filedata = {
|
filedata = {
|
||||||
user: 'root',
|
user: 'root',
|
||||||
group: 'wheel',
|
group: 'wheel',
|
||||||
|
@ -8,6 +9,14 @@ if os[:family] == 'freebsd'
|
||||||
dir_md5sum: '598f4fe64aefab8f00bcbea4c9239abf',
|
dir_md5sum: '598f4fe64aefab8f00bcbea4c9239abf',
|
||||||
dir_sha256sum: '9b4fb24edd6d1d8830e272398263cdbf026b97392cc35387b991dc0248a628f9',
|
dir_sha256sum: '9b4fb24edd6d1d8830e272398263cdbf026b97392cc35387b991dc0248a628f9',
|
||||||
}
|
}
|
||||||
|
when 'aix'
|
||||||
|
filedata = {
|
||||||
|
user: 'root',
|
||||||
|
group: 'system',
|
||||||
|
dir_content: nil,
|
||||||
|
dir_md5sum: nil,
|
||||||
|
dir_sha256sum: nil,
|
||||||
|
}
|
||||||
else
|
else
|
||||||
filedata = {
|
filedata = {
|
||||||
user: 'root',
|
user: 'root',
|
||||||
|
|
Loading…
Reference in a new issue