Class: GrubConfig

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

Defined Under Namespace

Classes: UnknownGrubConfig

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of GrubConfig.



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

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



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

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

Instance Method Details

#config_for_platform(path) ⇒ Object



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

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'
    @grubenv_path = '/boot/grub2/grubenv'
    @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
59
# 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/grub2/grub.cfg'
    @defaults_path = '/etc/default/grub'
    @grubenv_path = '/boot/grub2/grubenv'
    @version = 'grub2'
  end
end

#to_sObject



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

def to_s
  'Grub Config'
end