2015-12-14 13:23:41 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# copyright: 2015, Chef Software, Inc.
|
|
|
|
# license: All rights reserved
|
|
|
|
|
|
|
|
title '/tmp profile'
|
|
|
|
|
2016-02-04 15:26:13 +00:00
|
|
|
# you add controls here
|
2015-12-14 13:23:41 +00:00
|
|
|
control "tmp-1.0" do # A unique ID for this control
|
2016-02-04 15:26:13 +00:00
|
|
|
impact 0.7 # The criticality, if this control fails.
|
2015-12-14 13:23:41 +00:00
|
|
|
title "Create /tmp directory" # A human-readable title
|
|
|
|
desc "An optional description..."
|
|
|
|
describe file('/tmp') do # The actual test
|
|
|
|
it { should be_directory }
|
|
|
|
end
|
|
|
|
end
|
2016-02-04 15:26:13 +00:00
|
|
|
|
|
|
|
# you can also use plain tests
|
|
|
|
describe file('/tmp') do
|
|
|
|
it { should be_directory }
|
|
|
|
end
|