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