lib/vagrant-orchestrate/command/push.rb in vagrant-orchestrate-0.7.0.pre.1 vs lib/vagrant-orchestrate/command/push.rb in vagrant-orchestrate-0.7.0.pre.2
- old
+ new
@@ -4,10 +4,11 @@
require_relative "../../vagrant-managed-servers/action"
require "vagrant-orchestrate/action/setcredentials"
require "vagrant-orchestrate/repo_status"
require_relative "command_mixins"
require "deployment-tracker-client"
+require "log4r/outputter/deployment_tracker_outputter"
# Borrowed from http://stackoverflow.com/questions/12374645/splitting-an-array-into-equal-parts-in-ruby
class Array
def in_groups(num_groups)
return [] if num_groups == 0
@@ -69,10 +70,11 @@
status = RepoStatus.new(@env.root_path)
status.write(@env.tmp_path)
options[:status] = status
@env.action_runner.run(VagrantPlugins::ManagedServers::Action::InitDeploymentTracker,
- tracker_host: @env.vagrantfile.config.orchestrate.tracker_host)
+ tracker_host: @env.vagrantfile.config.orchestrate.tracker_host,
+ ui: @env.ui)
@env.action_runner.run(VagrantPlugins::ManagedServers::Action::TrackDeploymentStart,
tracker_host: @env.vagrantfile.config.orchestrate.tracker_host,
status: status,
args: ARGV.drop(2).join(" "))