Class: Inspec::Resources::EtcFstab

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from CommentParser

#parse_comment_line

Constructor Details

#initialize(fstab_path = nil) ⇒ EtcFstab

Returns a new instance of EtcFstab.



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

def initialize(fstab_path = nil)
  return skip_resource 'The `etc_fstab` resource is not supported on your OS.' unless inspec.os.linux?
  @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/resources/etc_fstab.rb', line 26

def params
  @params
end

Instance Method Details

#home_mount_optionsObject



56
57
58
59
# File 'lib/resources/etc_fstab.rb', line 56

def home_mount_options
  return nil unless where { mount_point == '/home' }.configured?
  where { mount_point == '/home' }.entries[0].mount_options
end

#nfs_file_systemsObject



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

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