mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
14 lines
249 B
Ruby
14 lines
249 B
Ruby
# copyright: 2015, Chef Software, Inc
|
|
|
|
title 'Proc Filesystem Configuration'
|
|
|
|
control 'test01' do
|
|
impact 0.5
|
|
title 'Catchy title'
|
|
desc '
|
|
There should always be a /proc
|
|
'
|
|
describe file('/proc') do
|
|
it { should be_mounted }
|
|
end
|
|
end
|