Class: VagrantPlugins::ProviderVeertu::Action::SnapshotRestore

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-veertu/action/snapshot_restore.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ SnapshotRestore

Returns a new instance of SnapshotRestore.



5
6
7
# File 'lib/vagrant-veertu/action/snapshot_restore.rb', line 5

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/vagrant-veertu/action/snapshot_restore.rb', line 9

def call(env)
  env[:ui].info(I18n.t(
    "vagrant.actions.vm.snapshot.restoring",
    name: env[:snapshot_name]))
  env[:machine].provider.driver.restore_snapshot(
    env[:machine].id, env[:snapshot_name]) do |progress|
    env[:ui].clear_line
    env[:ui].report_progress(progress, 100, false)
  end

  # Clear the line one last time since the progress meter doesn't disappear
  # immediately.
  env[:ui].clear_line

  @app.call(env)
end