Sha256: 253d53b6cbc13a710e1c9b7f92870499a2756d4d9fd3a91121a3f2664e873576
Contents?: true
Size: 881 Bytes
Versions: 1
Compression:
Stored size: 881 Bytes
Contents
require 'vagrant-openstack-illuin-provider/action/abstract_action' module VagrantPlugins module Openstack module Action class SnapshotDelete < 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.deleting', name: snapshot.name)) nova.delete_snapshot(env, snapshot.id) env[:ui].info(I18n.t('vagrant.actions.vm.snapshot.deleted', name: snapshot.name)) end @app.call env end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-openstack-illuin-provider-0.12.0 | lib/vagrant-openstack-illuin-provider/action/snapshot_delete.rb |