inspec/lib/resources/bond.rb
Dominik Richter 470c2ef920 wrap up core resource linting
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-09-22 02:15:42 +02:00

52 lines
1,004 B
Ruby

# encoding: utf-8
require 'resources/file'
module Vulcano::Resources
class Bond < File
name 'bond'
def initialize(bond)
@path = "/proc/net/bonding/#{bond}"
@file = vulcano.file(@path)
@content = nil
@params = {}
@loaded = false
end
def read_content
# parse the file
@content = @file.content
@params = SimpleConfig.new(
@file.content,
assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
multiple_values: true,
).params if @file.exists?
@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 exists?
@file.exists?
end
def has_interface?(interface)
params['Slave Interface'].include?(interface)
end
def interfaces
params['Slave Interface']
end
end
end