mirror of
https://github.com/inspec/inspec
synced 2024-12-21 10:33:23 +00:00
9b7c292d4c
Helps testing and lots of other things if we only use $stdout/$stderr. STDOUT/STDERR should only be used to restore the globals. Signed-off-by: Ryan Davis <zenspider@chef.io>
32 lines
742 B
Ruby
32 lines
742 B
Ruby
|
|
if ENV['DOCKER']
|
|
$stderr.puts "\033[1;33mTODO: Not running #{__FILE__.split("/").last} because we are running in docker\033[0m"
|
|
return
|
|
end
|
|
|
|
# lets define our own group
|
|
root_group = 'root'
|
|
|
|
if os[:name] == 'aix'
|
|
root_group = 'system'
|
|
elsif os[:name] == 'freebsd'
|
|
root_group = 'wheel'
|
|
elsif os[:name] == 'suse'
|
|
root_group = 'sfcb'
|
|
elsif os.solaris?
|
|
root_group = 'sys'
|
|
end
|
|
|
|
if os.unix?
|
|
describe etc_group do
|
|
its('gids') { should_not contain_duplicates }
|
|
its('groups') { should include root_group }
|
|
its('users') { should include 'root' }
|
|
end
|
|
|
|
puts "ROOT GROUP: " + root_group
|
|
describe etc_group.where(name: root_group) do
|
|
its('users') { should_not eq [] }
|
|
its('users') { should include 'root' }
|
|
end
|
|
end
|