Class: Vagrant::Action::Box::Destroy

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant/action/box/destroy.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ Destroy

Returns a new instance of Destroy.



7
8
9
10
# File 'lib/vagrant/action/box/destroy.rb', line 7

def initialize(app, env)
  @app = app
  @env = env
end

Instance Method Details

#call(env) ⇒ Object



12
13
14
15
16
17
18
19
20
21
# File 'lib/vagrant/action/box/destroy.rb', line 12

def call(env)
  # Delete the existing box
  env[:ui].info I18n.t("vagrant.actions.box.destroy.destroying", :name => env[:box_name])
  FileUtils.rm_rf(env[:box_directory])

  # Reload the box collection
  env[:box_collection].reload!

  @app.call(env)
end