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-1.8.5.2 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-1.8.5.1 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-1.8.4.2 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-1.8.4.1 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-1.8.1.2 plugins/providers/virtualbox/action/snapshot_delete.rb
vagrant-unbundled-1.8.1.1 plugins/providers/virtualbox/action/snapshot_delete.rb