Sha256: baef6092a7f1e4d14cf9de9326466d4a57cd3b59402e3b88dc23fba43a2a574c
Contents?: true
Size: 1.16 KB
Versions: 11
Compression:
Stored size: 1.16 KB
Contents
# copyright: 2015, Vulcano Security GmbH require "inspec/utils/simpleconfig" require "inspec/utils/file_reader" module Inspec::Resources class AuditDaemonConf < Inspec.resource(1) name "auditd_conf" supports platform: "unix" desc "Use the auditd_conf InSpec audit resource to test the configuration settings for the audit daemon. This file is typically located under /etc/audit/auditd.conf' on UNIX and Linux platforms." example <<~EXAMPLE describe auditd_conf do its('space_left_action') { should eq 'email' } end EXAMPLE include FileReader attr_reader :conf_path, :content, :params def initialize(path = nil) @conf_path = path || "/etc/audit/auditd.conf" @content = read_file_content(@conf_path) end def method_missing(name) read_params[name.to_s] end def resource_id @conf_path || "auditd_conf" end def to_s "Audit Daemon Config" end private def read_params return @params if defined?(@params) # parse the file conf = SimpleConfig.new( @content, multiple_values: false ) @params = conf.params end end end
Version data entries
11 entries across 11 versions & 1 rubygems