Sha256: c9127227dd1bc6d1aa3b0e69ae882ee6b5657a318b8ae520536a2f11b0a7c0fd
Contents?: true
Size: 511 Bytes
Versions: 3
Compression:
Stored size: 511 Bytes
Contents
module VagrantPlugins module HyperV module Action class SnapshotRollback def initialize(app, env) @app = app end def call(env) env[:ui].info I18n.t("vagrant_snap.actions.vm.snapshot_rollback.rolling_back") env[:machine].provider.driver.snapshot_rollback(env[:snap_name]) @app.call(env) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems