Class: Crowbar::Client::Command::Installer::Start
- Defined in:
- lib/crowbar/client/command/installer/start.rb
Overview
Implementation for the installer start command
Instance Attribute Summary
Attributes inherited from Base
#args, #options, #stderr, #stdin, #stdout
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/crowbar/client/command/installer/start.rb', line 35 def execute request.process do |request| case request.code when 200 say "Triggered installation process" when 226 say "Crowbar already installing" when 412 say "Network validation failed" when 410 say "Installation is already done" when 501 err "Platform is not supported" else err request.parsed_response["error"] end end end |