Sha256: 6c0bf4d0092b6e7a3aef11cfca7679bab50531754d6de10c218b8f0f27c2a4b8

Contents?: true

Size: 868 Bytes

Versions: 46

Compression:

Stored size: 868 Bytes

Contents

module VagrantPlugins
  module ProviderVirtualBox
    module Action
      class SnapshotDelete
        def initialize(app, env)
          @app = app
        end

        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
      end
    end
  end
end

Version data entries

46 entries across 42 versions & 5 rubygems

Version Path
vagrant-unbundled-2.2.7.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.6.2 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.6.1 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.6.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.5.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.4.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.3.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.2.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.2.0.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.1.4.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.1.2.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.1.1.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.0.4.0 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-2.0.3.0 plugins/providers/virtualbox/action/snapshot_delete.rb