Class: Inspec::Resources::Passwd

Inherits:
Object
  • Object
show all
Includes:
FileReader, PasswdParser
Defined in:
lib/resources/passwd.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from FileReader

#read_file_content

Methods included from PasswdParser

#parse_passwd, #parse_passwd_line

Constructor Details

#initialize(path = nil, opts = nil) ⇒ Passwd

Returns a new instance of Passwd.



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

def initialize(path = nil, opts = nil)
  opts ||= {}
  @path = path || '/etc/passwd'
  @content = opts[:content] || read_file_content(@path, allow_empty: true)
  @lines = @content.to_s.split("\n")
  @params = parse_passwd(@content)
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



41
42
43
# File 'lib/resources/passwd.rb', line 41

def content
  @content
end

#linesObject (readonly)

Returns the value of attribute lines.



42
43
44
# File 'lib/resources/passwd.rb', line 42

def lines
  @lines
end

#paramsObject (readonly)

Returns the value of attribute params.



40
41
42
# File 'lib/resources/passwd.rb', line 40

def params
  @params
end

Instance Method Details

#to_sObject



70
71
72
# File 'lib/resources/passwd.rb', line 70

def to_s
  '/etc/passwd'
end