Method: Inspec::Resources::Upstart#info

Defined in:
lib/resources/service.rb

#info(service_name) ⇒ Object



351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# File 'lib/resources/service.rb', line 351

def info(service_name)
  # get the status of upstart service
  status = inspec.command("#{service_ctl} status #{service_name}")

  # fallback for systemv services, those are not handled via `initctl`
  return SysV.new(inspec).info(service_name) if status.exit_status.to_i != 0 || status.stdout == ''

  # @see: http://upstart.ubuntu.com/cookbook/#job-states
  # grep for running to indicate the service is there
  running = !status.stdout[%r{start/running}].nil?
  enabled = info_enabled(service_name)

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