Sha256: 74d112a11220f81a9c9f2281bd125353caab82059b55ce975bfa10d214773b33

Contents?: true

Size: 744 Bytes

Versions: 46

Compression:

Stored size: 744 Bytes

Contents

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

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

Version data entries

46 entries across 42 versions & 5 rubygems

Version Path
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.0.2.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.0.1.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.0.0.1 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-1.9.8.1 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-1.9.7.1 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-1.9.5.1 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-1.9.1.1 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/providers/virtualbox/action/snapshot_restore.rb