Sha256: 7047959a8ae95251462d951b3972527127c4b1a3f065f4022288bea07110cf9d
Contents?: true
Size: 1.84 KB
Versions: 3
Compression:
Stored size: 1.84 KB
Contents
module VagrantPlugins module CORL module Command class Launcher < ::Vagrant.plugin("2", :command) include ::CORL::Parallel # Mainly for auto locking of resources #----------------------------------------------------------------------------- def self.synopsis "execute CORL actions within the defined network" end #----------------------------------------------------------------------------- # Property accessors / modifiers def env @env end #----------------------------------------------------------------------------- # Execution def execute # Set the base command so we can access in any actions executed ::CORL::Vagrant.command = ::CORL.handle(self) ::CORL.executable(ARGV - [ 'corl', '--' ], "[ vagrant ] corl") end #----------------------------------------------------------------------------- # Utilities def vm_machine(name, provider = nil, refresh = false) machine = nil # Mostly derived from Vagrant base command with_target_vms() method provider = provider.to_sym if provider env.active_machines.each do |active_name, active_provider| if name == active_name if provider && provider != active_provider raise ::Vagrant::Errors::ActiveMachineWithDifferentProvider, :name => active_name.to_s, :active_provider => active_provider.to_s, :requested_provider => provider.to_s else @logger.info("Active machine found with name #{active_name}. " + "Using provider: #{active_provider}") provider = active_provider break end end end provider ||= env.default_provider machine = env.machine(name, provider, refresh) machine.ui.opts[:color] = :default # TODO: Something better?? machine end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
corl-0.5.2 | lib/core/vagrant/commands/launcher.rb |
corl-0.5.1 | lib/core/vagrant/commands/launcher.rb |
corl-0.5.0 | lib/core/vagrant/commands/launcher.rb |