Class: Svcs

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

Overview

Solaris services

Instance Attribute Summary

Attributes inherited from ServiceManager

#inspec, #service_ctl

Instance Method Summary collapse

Constructor Details

#initialize(service_name, service_ctl = nil) ⇒ Svcs

Returns a new instance of Svcs.



488
489
490
491
# File 'lib/resources/service.rb', line 488

def initialize(service_name, service_ctl = nil)
  @service_ctl ||= 'svcs'
  super
end

Instance Method Details

#info(service_name) ⇒ Object



493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
# File 'lib/resources/service.rb', line 493

def info(service_name)
  # get the status of runit service
  cmd = inspec.command("#{service_ctl} -l #{service_name}")
  return nil if cmd.exit_status != 0

  params = SimpleConfig.new(
    cmd.stdout.chomp,
    assignment_re: /^(\w+)\s*(.*)$/,
    multiple_values: false,
  ).params

  installed = cmd.exit_status == 0
  running = installed && (params['state'] == 'online')
  enabled = installed && (params['enabled'] == 'true')

  {
    name: service_name,
    description: params['name'],
    installed: installed,
    running: running,
    enabled: enabled,
    type: 'svcs',
  }
end