diff --git a/test/integration/cookbooks/test/recipes/prep_files.rb b/test/integration/cookbooks/test/recipes/prep_files.rb index 4ed857a6..ca4a9a1d 100644 --- a/test/integration/cookbooks/test/recipes/prep_files.rb +++ b/test/integration/cookbooks/test/recipes/prep_files.rb @@ -5,9 +5,7 @@ # Helper recipe to create create a few files in the operating # systems, which the runner will test against. -gid = 'root' -gid = 'wheel' if node['platform_family'] == 'freebsd' -gid = 'system' if node['platform_family'] == 'aix' +gid = node['platform_family'] == 'aix' ? 'system' : node['root_group'] file '/tmp/file' do mode '0765'