inspec/test/integration/cookbooks/os_prepare/recipes/file.rb
2016-01-14 23:00:09 -05:00

32 lines
508 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
#
# prepares a sample file for verification
if node['platform_family'] != 'windows'
gid = case node['platform_family']
when 'aix'
'system'
when 'freebsd'
'wheel'
else
'root'
end
file '/tmp/file' do
mode '0765'
owner 'root'
group gid
content 'hello world'
end
directory '/tmp/folder' do
mode '0567'
owner 'root'
group gid
end
end