From a0e60d641dbd21f89e0dc292c05d78e93c3e47cb Mon Sep 17 00:00:00 2001 From: Paul Handly Date: Tue, 7 Feb 2012 14:52:16 -0800 Subject: [PATCH] Uncolorize puppet provisioner output --- lib/vagrant/provisioners/puppet.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/vagrant/provisioners/puppet.rb b/lib/vagrant/provisioners/puppet.rb index ba2ab2854..a41d28208 100644 --- a/lib/vagrant/provisioners/puppet.rb +++ b/lib/vagrant/provisioners/puppet.rb @@ -146,12 +146,7 @@ module Vagrant :manifest => @manifest_file) 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