vagrant/plugins/commands/up/command.rb

74 lines
2.0 KiB
Ruby
Raw Normal View History

2012-04-19 20:59:48 +00:00
require 'optparse'
require "vagrant"
require File.expand_path("../start_mixins", __FILE__)
2012-04-19 20:59:48 +00:00
module VagrantPlugins
module CommandUp
2012-11-07 05:05:14 +00:00
class Command < Vagrant.plugin("2", :command)
2012-04-20 04:33:26 +00:00
include StartMixins
2012-04-19 20:59:48 +00:00
def self.synopsis
"starts and provisions the vagrant environment"
end
2012-04-19 20:59:48 +00:00
def execute
options = {}
options[:destroy_on_error] = true
2013-04-16 22:22:14 +00:00
options[:parallel] = true
options[:provision_ignore_sentinel] = false
2013-04-16 22:22:14 +00:00
2012-08-15 05:38:41 +00:00
opts = OptionParser.new do |o|
2014-02-08 08:20:50 +00:00
o.banner = "Usage: vagrant up [options] [name]"
o.separator ""
o.separator "Options:"
2012-08-15 05:38:41 +00:00
o.separator ""
2012-08-15 05:38:41 +00:00
build_start_options(o, options)
o.on("--[no-]destroy-on-error",
2014-02-08 08:20:50 +00:00
"Destroy machine if any fatal error happens (default to true)") do |destroy|
options[:destroy_on_error] = destroy
end
2013-04-16 22:22:14 +00:00
o.on("--[no-]parallel",
2014-02-08 08:20:50 +00:00
"Enable or disable parallelism if provider supports it") do |parallel|
2013-04-16 22:22:14 +00:00
options[:parallel] = parallel
end
2014-02-08 08:20:50 +00:00
o.on("--provider PROVIDER", String,
"Back the machine with a specific provider") do |provider|
options[:provider] = provider
end
2012-04-19 20:59:48 +00:00
end
# Parse the options
argv = parse_options(opts)
return if !argv
# Validate the provisioners
validate_provisioner_flags!(options)
2012-04-19 20:59:48 +00:00
# Go over each VM and bring it up
@logger.debug("'Up' each target VM...")
# Build up the batch job of what we'll do
2013-04-16 22:22:14 +00:00
@env.batch(options[:parallel]) do |batch|
with_target_vms(argv, :provider => options[:provider]) do |machine|
@env.ui.info(I18n.t(
"vagrant.commands.up.upping",
:name => machine.name,
:provider => machine.provider_name))
2013-03-22 02:36:15 +00:00
batch.action(machine, :up, options)
end
2012-04-19 20:59:48 +00:00
end
# Success, exit status 0
0
2012-08-15 05:38:41 +00:00
end
2012-04-19 20:59:48 +00:00
end
end
end