Class: Inspec::Resources::SrcMstr

Inherits:
ServiceManager show all
Defined in:
lib/resources/service.rb

Overview

AIX services

Instance Attribute Summary collapse

Attributes inherited from ServiceManager

#inspec, #service_ctl

Instance Method Summary collapse

Methods inherited from ServiceManager

#initialize

Constructor Details

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



302
303
304
# File 'lib/resources/service.rb', line 302

def name
  @name
end

Instance Method Details

#info(service_name) ⇒ Object



304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'lib/resources/service.rb', line 304

def info(service_name)
  @name = service_name
  running = status?
  return nil if running.nil?

  {
    name: service_name,
    description: nil,
    installed: true,
    running: running,
    enabled: enabled?,
    type: 'srcmstr',
  }
end