Sha256: abdd277e675361a1f91304982fbe578f941224cad13aa40293a141f6a3a289a2
Contents?: true
Size: 625 Bytes
Versions: 9
Compression:
Stored size: 625 Bytes
Contents
# frozen_string_literal: true require 'log4r' module VagrantPlugins module ProviderLibvirt module Action class RemoveLibvirtImage def initialize(app, _env) @logger = Log4r::Logger.new('vagrant_libvirt::action::remove_libvirt_image') @app = app end def call(env) env[:ui].info('Vagrant-libvirt plugin removed box only from your LOCAL ~/.vagrant/boxes directory') env[:ui].info('From Libvirt storage pool you have to delete image manually(virsh, virt-manager or by any other tool)') @app.call(env) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems