Class: Crowbar::Client::App::Installer

Inherits:
Base
  • Object
show all
Defined in:
lib/crowbar/client/app/installer.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

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

Instance Method Details

#startObject



93
94
95
96
97
98
99
# File 'lib/crowbar/client/app/installer.rb', line 93

def start
  Command::Installer::Start.new(
    *command_params
  ).execute
rescue => e
  catch_errors(e)
end

#statusObject



68
69
70
71
72
73
74
# File 'lib/crowbar/client/app/installer.rb', line 68

def status
  Command::Installer::Status.new(
    *command_params
  ).execute
rescue => e
  catch_errors(e)
end