Class: Inspec::Resources::EtcFstab

Inherits:
Object
  • Object
show all
Includes:
FileReader, Utils::CommentParser
Defined in:
lib/inspec/resources/etc_fstab.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from FileReader

#read_file_content

Methods included from Utils::CommentParser

#parse_comment_line

Constructor Details

#initialize(fstab_path = nil) ⇒ EtcFstab

Returns a new instance of EtcFstab.



31
32
33
34
35
36
37
# File 'lib/inspec/resources/etc_fstab.rb', line 31

def initialize(fstab_path = nil)
  @conf_path      = fstab_path || "/etc/fstab"
  @files_contents = {}
  @content        = nil
  @params         = nil
  read_content
end

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



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

def params
  @params
end

Instance Method Details

#home_mount_optionsObject



54
55
56
57
58
# File 'lib/inspec/resources/etc_fstab.rb', line 54

def home_mount_options
  return nil unless where { mount_point == "/home" }.configured?

  where { mount_point == "/home" }.entries[0].mount_options
end

#nfs_file_systemsObject



50
51
52
# File 'lib/inspec/resources/etc_fstab.rb', line 50

def nfs_file_systems
  where { file_system_type.match(/nfs/) }
end

#to_sObject



60
61
62
# File 'lib/inspec/resources/etc_fstab.rb', line 60

def to_s
  "File System Table File (fstab)"
end