2015-12-14 14:23:41 +01:00
|
|
|
# copyright: 2015, Chef Software, Inc.
|
|
|
|
|
|
|
|
title '/tmp profile'
|
|
|
|
|
2016-02-04 16:26:13 +01:00
|
|
|
# you add controls here
|
2018-09-26 10:28:58 -07:00
|
|
|
control "tmp-1.0" do # A unique ID for this control
|
|
|
|
impact 0.7 # The criticality, if this control fails.
|
|
|
|
title "Create /tmp directory" # A human-readable title
|
|
|
|
desc "An optional description..." # Describe why this is needed
|
|
|
|
desc "label", "An optional description with a label" # Pair a part of the description with a label
|
|
|
|
tag data: "temp data" # A tag allows you to associate key information
|
|
|
|
tag "security" # to the test
|
|
|
|
ref "Document A-12", url: 'http://...' # Additional references
|
2016-03-17 23:07:42 +01:00
|
|
|
|
2018-09-26 10:28:58 -07:00
|
|
|
describe file('/tmp') do # The actual test
|
2015-12-14 14:23:41 +01:00
|
|
|
it { should be_directory }
|
|
|
|
end
|
|
|
|
end
|
2016-02-04 16:26:13 +01:00
|
|
|
|
|
|
|
# you can also use plain tests
|
|
|
|
describe file('/tmp') do
|
|
|
|
it { should be_directory }
|
|
|
|
end
|