Sha256: 1b95f517008eea33f5ce1754a15ef78ae95fcfabc36968e94f2001f6f044872c
Contents?: true
Size: 767 Bytes
Versions: 5
Compression:
Stored size: 767 Bytes
Contents
require 'vagrant-openstack-provider/action/abstract_action' module VagrantPlugins module Openstack module Action class SnapshotRestore < AbstractAction def initialize(app, _env) @app = app end def call(env) nova = env[:openstack_client].nova machine_snapshots = nova.list_snapshots(env, env[:machine].id) snapshot = machine_snapshots.find { |s| s.name == env[:snapshot_name] } unless snapshot.nil? env[:ui].info(I18n.t('vagrant.actions.vm.snapshot.restoring', name: snapshot.name)) nova.restore_snapshot(env, env[:machine].id, snapshot.id) end @app.call env end end end end end
Version data entries
5 entries across 5 versions & 2 rubygems