Sha256: 7dc8f1905e8138bcf77af3ea724dbd79a5070fb78d3f27fcc54f217f3d9e72bd

Contents?: true

Size: 791 Bytes

Versions: 12

Compression:

Stored size: 791 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].rewriting do |ui|
              ui.clear_line
              ui.report_progress(progress, 100, false)
            end
          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

12 entries across 12 versions & 3 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/providers/virtualbox/action/snapshot_restore.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.3.3.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.3.2.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.19.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.18.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.16.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.14.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.10.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.9.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.8.0 plugins/providers/virtualbox/action/snapshot_restore.rb