mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
470c2ef920
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
52 lines
1,004 B
Ruby
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
|