Class: Inspec::Resources::SshConf

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/ssh_conf.rb

Direct Known Subclasses

SshdConf

Instance Method Summary collapse

Constructor Details

#initialize(conf_path = nil, type = nil) ⇒ SshConf

Returns a new instance of SshConf.



20
21
22
23
24
# File 'lib/resources/ssh_conf.rb', line 20

def initialize(conf_path = nil, type = nil)
  @conf_path = conf_path || '/etc/ssh/ssh_config'
  typename = (@conf_path.include?('sshd') ? 'Server' : 'Client')
  @type = type || "SSH #{typename} configuration #{conf_path}"
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name) ⇒ Object



44
45
46
47
48
49
50
# File 'lib/resources/ssh_conf.rb', line 44

def method_missing(name)
  param = read_params[name.to_s.downcase]
  return nil if param.nil?
  # extract first value if we have only one value in array
  return param[0] if param.length == 1
  param
end

Instance Method Details

#contentObject



26
27
28
# File 'lib/resources/ssh_conf.rb', line 26

def content
  read_content
end

#convert_hash(hash) ⇒ Object



36
37
38
39
40
41
42
# File 'lib/resources/ssh_conf.rb', line 36

def convert_hash(hash)
  new_hash = {}
  hash.each do |k, v|
    new_hash[k.downcase] = v
  end
  new_hash
end

#params(*opts) ⇒ Object



30
31
32
33
34
# File 'lib/resources/ssh_conf.rb', line 30

def params(*opts)
  opts.inject(read_params) do |res, nxt|
    res.respond_to?(:key) ? res[nxt] : nil
  end
end

#to_sObject



52
53
54
# File 'lib/resources/ssh_conf.rb', line 52

def to_s
  'SSH Configuration'
end