inspec/lib/inspec/resources/bond.rb
Ryan Davis a5309ea392 blindly applied chefstyle -a
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-06-11 18:52:03 -07:00

70 lines
1.6 KiB
Ruby

require "inspec/resources/file"
require "inspec/utils/file_reader"
require "inspec/utils/simpleconfig"
module Inspec::Resources
class Bond < FileResource
name "bond"
supports platform: "unix"
desc 'Use the bond InSpec audit resource to test a logical, bonded network interface (i.e. "two or more network interfaces aggregated into a single, logical network interface"). On Linux platforms, any value in the /proc/net/bonding directory may be tested.'
example <<~EXAMPLE
describe bond('bond0') do
it { should exist }
end
EXAMPLE
include FileReader
def initialize(bond)
@bond = bond
@path = "/proc/net/bonding/#{bond}"
@file = inspec.file(@path)
@content = read_file_content(@path, allow_empty: true)
@params = {}
@loaded = false
end
def read_content
if @file.exist?
@params = SimpleConfig.new(
@content,
assignment_regex: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
multiple_values: true
).params
end
@loaded = true
@content
end
# ensures the content is loaded before we return the params
def params
read_content if @loaded == false
@params
end
def content
read_content if @loaded == false
@content
end
def exist?
@file.exist?
end
def has_interface?(interface)
params["Slave Interface"].include?(interface)
end
def interfaces
params["Slave Interface"]
end
def mode
params["Bonding Mode"].first
end
def to_s
"Bond #{@bond}"
end
end
end