From 20fa35550238bd9fc18864ef3cacf6fab38d1ce4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 26 Jan 2012 09:52:37 -0800 Subject: [PATCH] Uncolorize puppet server output since it does it for us [GH-685] --- lib/vagrant/provisioners/puppet_server.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/vagrant/provisioners/puppet_server.rb b/lib/vagrant/provisioners/puppet_server.rb index 40d16963d..1f21d3589 100644 --- a/lib/vagrant/provisioners/puppet_server.rb +++ b/lib/vagrant/provisioners/puppet_server.rb @@ -46,12 +46,7 @@ module Vagrant env[:ui].info I18n.t("vagrant.provisioners.puppet_server.running_puppetd") env[:vm].channel.sudo(command) do |type, data| - # Output the data with the proper color based on the stream. - color = type == :stdout ? :green : :red - - # Note: Be sure to chomp the data to avoid the newlines that the - # Chef outputs. - env[:ui].info(data.chomp, :color => color, :prefix => false) + env[:ui].info(data.chomp, :prefix => false) end end end