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