Class: Crowbar::Client::Command::Services::ListServiceRestarts

Inherits:
Base
  • Object
show all
Includes:
Mixin::Format
Defined in:
lib/crowbar/client/command/services/list_restarts.rb

Overview

Implementation for the List Restarts command

Instance Attribute Summary

Attributes inherited from Base

#args, #options, #stderr, #stdin, #stdout

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Crowbar::Client::Command::Base

Instance Method Details

#executeObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/crowbar/client/command/services/list_restarts.rb', line 33

def execute
  request.process do |request|
    case request.code
    when 200
      formatter = Formatter::Hash.new(
        format: "json",
        headings: ["Node"],
        values: request.parsed_response
      )

      if formatter.empty?
        err "No restarts"
      else
        say formatter.result
      end
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



27
28
29
30
31
# File 'lib/crowbar/client/command/services/list_restarts.rb', line 27

def request
  @request ||= Request::Services::ListServiceRestarts.new(
    *args
  )
end