class Crowbar::Client::App::Installer

A Thor based CLI wrapper for installer commands

Public Instance Methods

start() click to toggle source

Installer start command

It will trigger the installation of the server.

# File lib/crowbar/client/app/installer.rb, line 108
def start
  Command::Installer::Start.new(
    *command_params
  ).execute
rescue => e
  catch_errors(e)
end
status() click to toggle source

Installer status command

It will print out information about the current status of the installer. You can display the list in different output formats and you can filter the list by any search criteria.

# File lib/crowbar/client/app/installer.rb, line 78
def status
  Command::Installer::Status.new(
    *command_params
  ).execute
rescue => e
  catch_errors(e)
end