Sha256: 18604aec1f279a46e2bf4a5aa02cd07d214a5f2d134345d83c1ecf8f928a9b3a
Contents?: true
Size: 482 Bytes
Versions: 5
Compression:
Stored size: 482 Bytes
Contents
# frozen_string_literal: true module VagrantPlugins module ProviderLibvirt 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[:snapshot_name]) @app.call(env) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems