Class: Inspec::Resources::SshdConfig

Inherits:
SshConfig
  • Object
show all
Defined in:
lib/inspec/resources/ssh_config.rb

Instance Method Summary collapse

Methods inherited from SshConfig

#content, #convert_hash, #method_missing, #params

Methods included from FileReader

#read_file_content

Constructor Details

#initialize(path = nil) ⇒ SshdConfig

Returns a new instance of SshdConfig.



101
102
103
# File 'lib/inspec/resources/ssh_config.rb', line 101

def initialize(path = nil)
  super(path || ssh_config_file("sshd_config"))
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Inspec::Resources::SshConfig

Instance Method Details

#to_sObject



105
106
107
# File 'lib/inspec/resources/ssh_config.rb', line 105

def to_s
  "SSHD Configuration"
end