vagrant/plugins/commands/destroy/command.rb

31 lines
699 B
Ruby
Raw Normal View History

2012-04-19 20:59:48 +00:00
module VagrantPlugins
module CommandDestroy
class Command < Vagrant.plugin("1", :command)
2010-08-25 06:05:40 +00:00
def execute
options = {}
opts = OptionParser.new do |o|
o.banner = "Usage: vagrant destroy [vm-name]"
o.separator ""
o.on("-f", "--force", "Destroy without confirmation.") do |f|
options[:force] = f
end
2011-12-17 19:05:49 +00:00
end
# Parse the options
argv = parse_options(opts)
return if !argv
@logger.debug("'Destroy' each target VM...")
with_target_vms(argv, :reverse => true) do |vm|
vm.action(:destroy)
2010-08-25 06:05:40 +00:00
end
# Success, exit status 0
0
end
2010-08-25 06:05:40 +00:00
end
end
end