Sha256: 4c056deca02e561278f1a54d12926989ddba819a989c306558380bfc016ebec8
Contents?: true
Size: 733 Bytes
Versions: 11
Compression:
Stored size: 733 Bytes
Contents
module HashiCorp module VagrantVMwarefusion 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") # Snapshot rollback involves powering off and on the VM # so we need to find the gui state boot_mode = env[:machine].provider_config.gui ? "gui" : "headless" env[:machine].provider.driver.snapshot_rollback(boot_mode) @app.call(env) end end end end end
Version data entries
11 entries across 11 versions & 2 rubygems