Class: GrubConfig

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

Overview

rubocop:disable Metrics/ClassLength

Defined Under Namespace

Classes: UnknownGrubConfig

Instance Method Summary collapse

Constructor Details

#initialize(path = nil, kernel = nil) ⇒ GrubConfig

Returns a new instance of GrubConfig.



26
27
28
29
30
31
# File 'lib/resources/grub_conf.rb', line 26

def initialize(path = nil, kernel = nil)
  config_for_platform(path)
  @kernel = kernel || 'default'
rescue UnknownGrubConfig
  return skip_resource 'The `grub_config` resource is not supported on your OS yet.'
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name) ⇒ Object



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

def method_missing(name)
  read_params[name.to_s]
end

Instance Method Details

#config_for_platform(path) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/resources/grub_conf.rb', line 33

def config_for_platform(path)
  os = inspec.os
  if os.redhat? || os[:name] == 'fedora'
    config_for_redhatish(path)
  elsif os.debian?
    @conf_path = path || '/boot/grub/grub.cfg'
    @defaults_path = '/etc/default/grub'
    @version = 'grub2'
  elsif os[:name] == 'amazon'
    @conf_path = path || '/etc/grub.conf'
    @version = 'legacy'
  else
    raise UnknownGrubConfig
  end
end

#config_for_redhatish(path) ⇒ Object



49
50
51
52
53
54
55
56
57
58
# File 'lib/resources/grub_conf.rb', line 49

def config_for_redhatish(path)
  if inspec.os[:release].to_f < 7
    @conf_path = path || '/etc/grub.conf'
    @version = 'legacy'
  else
    @conf_path = path || '/boot/grub/grub.cfg'
    @defaults_path = '/etc/default/grub'
    @version = 'grub2'
  end
end

#to_sObject



64
65
66
# File 'lib/resources/grub_conf.rb', line 64

def to_s
  'Grub Config'
end