Class: Crowbar::Client::Command::Upgrade::Services
- Includes:
- Mixin::UpgradeError
- Defined in:
- lib/crowbar/client/command/upgrade/services.rb
Overview
Implementation for the upgrade services 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
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/crowbar/client/command/upgrade/services.rb', line 33 def execute request.process do |request| case request.code when 200 say "Stopping related services on all nodes. " \ "Query the upgrade status to follow the process with 'crowbarctl upgrade status'." say "Next step: 'crowbarctl upgrade backup openstack'" else err format_error( request.parsed_response["error"], "services" ) end end end |