2015-12-21 12:25:34 -06:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2016-08-03 16:41:27 +01:00
|
|
|
if ENV['DOCKER']
|
|
|
|
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__.split("/").last} because we are running in docker\033[0m"
|
|
|
|
return
|
|
|
|
end
|
2016-05-10 19:23:11 +02:00
|
|
|
|
|
|
|
# lets define our own group
|
2016-01-28 14:51:54 +01:00
|
|
|
root_group = 'root'
|
|
|
|
|
|
|
|
if os[:family] == 'aix'
|
|
|
|
root_group = 'system'
|
|
|
|
elsif os[:family] == 'freebsd'
|
|
|
|
root_group = 'wheel'
|
|
|
|
elsif os.solaris?
|
|
|
|
root_group = 'sys'
|
|
|
|
end
|
2015-12-21 12:25:34 -06:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
describe etc_group.where(name: root_group) do
|
|
|
|
its('users') { should include 'root' }
|
|
|
|
end
|
|
|
|
end
|