inspec/lib/resources/bond.rb
2015-10-12 13:01:58 +02:00

59 lines
1.1 KiB
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
require 'resources/file'
module Vulcano::Resources
class Bond < File
name 'bond'
def initialize(bond)
@bond = 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.exist?
@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 to_s
"Bond #{@bond}"
end
end
end