Sha256: ea09986fd50ae707658c1a5851fb80913522a07a3ad7774af0f3c8ef565fec8f

Contents?: true

Size: 614 Bytes

Versions: 30

Compression:

Stored size: 614 Bytes

Contents

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

        def call(env)
          snapshots = env[:machine].provider.driver.list_snapshots(env[:machine].id)
          snapshot_id = snapshots[env[:snapshot_name]]

          env[:ui].info I18n.t('vagrant.actions.vm.snapshot.restoring',
                               name: env[:snapshot_name])
          env[:machine].provider.driver.restore_snapshot(
            env[:machine].id, snapshot_id)

          @app.call(env)
        end
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
vagrant-parallels-2.4.5 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.4.4 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.4.2 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.4.1 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.4.0 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.3.1 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.3.0 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.6 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.5 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.4 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.3 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.2 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.1 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.2.0 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.1.0 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.0.1 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-2.0.0 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-1.7.8 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-1.7.7 lib/vagrant-parallels/action/snapshot_restore.rb
vagrant-parallels-1.7.6 lib/vagrant-parallels/action/snapshot_restore.rb