mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
16 lines
267 B
Ruby
16 lines
267 B
Ruby
|
# encoding: utf-8
|
||
|
# 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
|