Class: VagrantPlugins::ProviderVeertu::Action::SnapshotDelete

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ SnapshotDelete

Returns a new instance of SnapshotDelete.



5
6
7
# File 'lib/vagrant-veertu/action/snapshot_delete.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
25
26
27
28
# File 'lib/vagrant-veertu/action/snapshot_delete.rb', line 9

def call(env)
  env[:ui].info(I18n.t(
    "vagrant.actions.vm.snapshot.deleting",
    name: env[:snapshot_name]))
  env[:machine].provider.driver.delete_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

  env[:ui].success(I18n.t(
    "vagrant.actions.vm.snapshot.deleted",
    name: env[:snapshot_name]))

  @app.call(env)
end