mirror of
https://github.com/inspec/inspec
synced 2024-11-27 07:00:39 +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
|
||||
|
||||
if os[:family] == 'freebsd'
|
||||
case os[:family]
|
||||
when 'freebsd'
|
||||
filedata = {
|
||||
user: 'root',
|
||||
group: 'wheel',
|
||||
|
@ -8,6 +9,14 @@ if os[:family] == 'freebsd'
|
|||
dir_md5sum: '598f4fe64aefab8f00bcbea4c9239abf',
|
||||
dir_sha256sum: '9b4fb24edd6d1d8830e272398263cdbf026b97392cc35387b991dc0248a628f9',
|
||||
}
|
||||
when 'aix'
|
||||
filedata = {
|
||||
user: 'root',
|
||||
group: 'system',
|
||||
dir_content: nil,
|
||||
dir_md5sum: nil,
|
||||
dir_sha256sum: nil,
|
||||
}
|
||||
else
|
||||
filedata = {
|
||||
user: 'root',
|
||||
|
|
Loading…
Reference in a new issue