vagrant/plugins/commands/destroy/plugin.rb

19 lines
466 B
Ruby
Raw Normal View History

2012-04-19 20:59:48 +00:00
require "vagrant"
module VagrantPlugins
module CommandDestroy
2012-11-07 05:05:14 +00:00
class Plugin < Vagrant.plugin("2")
2012-04-19 20:59:48 +00:00
name "destroy command"
description <<-DESC
The `destroy` command deletes and removes the files and record of your virtual machines.
All data is lost and a new VM will have to be created using `up`
DESC
2012-04-19 20:59:48 +00:00
command("destroy") do
require File.expand_path("../command", __FILE__)
Command
end
2012-04-19 20:59:48 +00:00
end
end
end