vagrant/plugins/commands/destroy/command.rb

51 lines
1.3 KiB
Ruby
Raw Normal View History

2012-04-19 20:59:48 +00:00
module VagrantPlugins
module CommandDestroy
2012-11-07 05:05:14 +00:00
class Command < Vagrant.plugin("2", :command)
def self.synopsis
"stops and deletes all traces of the vagrant machine"
end
2010-08-25 06:05:40 +00:00
def execute
options = {}
options[:force] = false
opts = OptionParser.new do |o|
2014-02-08 08:20:50 +00:00
o.banner = "Usage: vagrant destroy [options] [name]"
o.separator ""
o.separator "Options:"
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...")
declined = 0
total = 0
with_target_vms(argv, reverse: true) do |vm|
action_env = vm.action(
:destroy, force_confirm_destroy: options[:force])
total += 1
declined += 1 if action_env.has_key?(:force_confirm_destroy_result) &&
action_env[:force_confirm_destroy_result] == false
2010-08-25 06:05:40 +00:00
end
# Nothing was declined
return 0 if declined == 0
# Everything was declined
return 1 if declined == total
# Some was declined
return 2
end
2010-08-25 06:05:40 +00:00
end
end
end