Sha256: 1e5c0546d29d4cc742dcb50f601bda66a9cd8501d5c5f0fbcbbea5a6d2dcdef1
Contents?: true
Size: 497 Bytes
Versions: 9
Compression:
Stored size: 497 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[:machine], env[:snapshot_name]) @app.call(env) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems