Class: Inspec::Resources::Package

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

Instance Method Summary collapse

Constructor Details

#initialize(package_name, opts = {}) ⇒ Package

rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/resources/package.rb', line 22

def initialize(package_name, opts = {}) # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
  @package_name = package_name
  @name = @package_name
  @cache = nil
  # select package manager
  @pkgman = nil

  os = inspec.os
  if os.debian?
    @pkgman = Deb.new(inspec)
  elsif os.redhat? || %w{suse amazon fedora}.include?(os[:family])
    @pkgman = Rpm.new(inspec, opts)
  elsif ['arch'].include?(os[:name])
    @pkgman = Pacman.new(inspec)
  elsif ['darwin'].include?(os[:family])
    @pkgman = Brew.new(inspec)
  elsif os.windows?
    @pkgman = WindowsPkg.new(inspec)
  elsif ['aix'].include?(os[:family])
    @pkgman = BffPkg.new(inspec)
  elsif os.solaris?
    @pkgman = SolarisPkg.new(inspec)
  elsif ['hpux'].include?(os[:family])
    @pkgman = HpuxPkg.new(inspec)
  elsif ['alpine'].include?(os[:name])
    @pkgman = AlpinePkg.new(inspec)
  else
    raise Inspec::Exceptions::ResourceSkipped, 'The `package` resource is not supported on your OS yet.'
  end

  evaluate_missing_requirements
end

Instance Method Details

#held?(_provider = nil, _version = nil) ⇒ Boolean

returns true it the package is held (if the OS supports it)

Returns:

  • (Boolean)


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

def held?(_provider = nil, _version = nil)
  info[:held] == true
end

#infoObject

returns the package description



66
67
68
69
70
71
72
73
# File 'lib/resources/package.rb', line 66

def info
  return @cache if !@cache.nil?
  # All `@pkgman.info` methods return `{}`. This matches that
  # behavior if `@pkgman` can't be determined, thus avoiding the
  # `undefined method 'info' for nil:NilClass` error
  return {} if @pkgman.nil?
  @pkgman.info(@package_name)
end

#installed?(_provider = nil, _version = nil) ⇒ Boolean

returns true if the package is installed

Returns:

  • (Boolean)


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

def installed?(_provider = nil, _version = nil)
  info[:installed] == true
end

#to_sObject



81
82
83
# File 'lib/resources/package.rb', line 81

def to_s
  "System Package #{@package_name}"
end

#versionObject

return the package version



76
77
78
79
# File 'lib/resources/package.rb', line 76

def version
  info = @pkgman.info(@package_name)
  info[:version]
end