Class: Crowbar::Client::App::Installer
- Inherits:
-
Base
- Object
- Thor
- Base
- Crowbar::Client::App::Installer
show all
- Defined in:
- lib/crowbar/client/app/installer.rb
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Instance Method Details
#start ⇒ Object
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
|
#status ⇒ Object
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
|