Class: VagrantPlugins::Proxmox::Action::CleanupAfterDestroy

Inherits:
ProxmoxAction
  • Object
show all
Defined in:
lib/vagrant-proxmox/action/cleanup_after_destroy.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ CleanupAfterDestroy

Returns a new instance of CleanupAfterDestroy.



7
8
9
# File 'lib/vagrant-proxmox/action/cleanup_after_destroy.rb', line 7

def initialize app, env
	@app = app
end

Instance Method Details

#call(env) ⇒ Object



11
12
13
14
# File 'lib/vagrant-proxmox/action/cleanup_after_destroy.rb', line 11

def call env
	FileUtils.rm_rf ".vagrant/machines/#{env[:machine].name}/proxmox"
	next_action env
end