Sha256: 13cd1e367097eb5b048923ab08b888842942adb9302bb233bd26608180128252
Contents?: true
Size: 621 Bytes
Versions: 9
Compression:
Stored size: 621 Bytes
Contents
# frozen_string_literal: true module VagrantPlugins module ProviderLibvirt module Action class SnapshotDelete def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t( "vagrant.actions.vm.snapshot.deleting", name: env[:snapshot_name])) env[:machine].provider.driver.delete_snapshot(env[:machine], env[:snapshot_name]) env[:ui].success(I18n.t( "vagrant.actions.vm.snapshot.deleted", name: env[:snapshot_name])) @app.call(env) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems