class Falcon::Command::Virtual

def call

def call
	container = run(parent.verbose?)
	
	container.wait
end

def run(verbose = false)

def run(verbose = false)
	configuration = Configuration.new(verbose)
	
	@paths.each do |path|
		configuration.load_file(path)
	end
	
	hosts = Hosts.new(configuration)
	
	return hosts.run(@options)
end