mirror of
https://github.com/inspec/inspec
synced 2024-12-19 01:23:50 +00:00
17 lines
298 B
Ruby
17 lines
298 B
Ruby
|
# encoding: utf-8
|
||
|
# copyright: 2015, Chef Software, Inc
|
||
|
# license: All rights reserved
|
||
|
|
||
|
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
|