inspec/lib/plugins/inspec-init/templates/profiles/os/controls/example.rb

19 lines
539 B
Ruby
Raw Normal View History

# copyright: 2018, The Authors
2016-02-14 20:27:40 +00:00
title "sample section"
2016-02-14 20:27:40 +00:00
# you can also use plain tests
describe file("/tmp") do
2016-02-14 20:27:40 +00:00
it { should be_directory }
end
# you add controls here
control "tmp-1.0" do # A unique ID for this control
2016-02-14 20:27:40 +00:00
impact 0.7 # The criticality, if this control fails.
title "Create /tmp directory" # A human-readable title
desc "An optional description..."
describe file("/tmp") do # The actual test
2016-02-14 20:27:40 +00:00
it { should be_directory }
end
end