Class: Crowbar::Client::Command::Backup::Download
- Inherits:
-
Crowbar::Client::Command::Base
- Object
- Crowbar::Client::Command::Base
- Crowbar::Client::Command::Backup::Download
- Defined in:
- lib/crowbar/client/command/backup/download.rb
Overview
Implementation for the backup download command
Instance Attribute Summary
Attributes inherited from Crowbar::Client::Command::Base
#args, #options, #stderr, #stdin, #stdout
Instance Method Summary collapse
Methods inherited from Crowbar::Client::Command::Base
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/crowbar/client/command/backup/download.rb', line 31 def execute request.process do |request| case request.code when 200 if write(request.body) say "Successfully downloaded backup" else err "Failed to download backup" end when 404 err "Backup does not exist" else err request.body end end end |