Sha256: 4901fd89a94ac7fd30e79dc47ff6bab749702490fd063ba57f4d9776c3c5463c

Contents?: true

Size: 484 Bytes

Versions: 1

Compression:

Stored size: 484 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandDestroy
    class Plugin < Vagrant.plugin("2")
      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

      command("destroy") do
        require File.expand_path("../command", __FILE__)
        Command
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/commands/destroy/plugin.rb