Class: Inspec::Resources::HpuxPkg

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

Instance Attribute Summary

Attributes inherited from PkgManagement

#inspec

Instance Method Summary collapse

Methods inherited from PkgManagement

#initialize, #missing_requirements

Constructor Details

This class inherits a constructor from Inspec::Resources::PkgManagement

Instance Method Details

#info(package_name) ⇒ Object



243
244
245
246
247
248
249
250
251
252
253
# File 'lib/resources/package.rb', line 243

def info(package_name)
  cmd = inspec.command("swlist -l product | grep #{package_name}")
  return {} if cmd.exit_status.to_i != 0
  pkg = cmd.stdout.strip.split(' ')
  {
    name: pkg[0],
    installed: true,
    version: pkg[1],
    type: 'pkg',
  }
end