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-unbundled-2.2.7.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.6.2 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.6.1 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.6.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.5.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.4.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.3.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.2.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.2.0.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.1.4.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.1.2.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.1.1.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.0.4.0 plugins/providers/virtualbox/action/snapshot_restore.rb
vagrant-unbundled-2.0.3.0 plugins/providers/virtualbox/action/snapshot_restore.rb