From ac62f09c968bb9156fabad2b94aac185dbacb539 Mon Sep 17 00:00:00 2001 From: Jens Rosenboom Date: Fri, 4 Mar 2016 13:59:36 +0100 Subject: [PATCH] Use "--no-color" option for chef-client run In order to make the logs more readable, tell chef-client not to output lots of color codes. Depends-On: I75088a00dc17b8a4907a1314d82aff500c5dccfe Change-Id: I2ae9eb2daa7674cf4a8d922f1337d8c4c47b8475 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index c21a1b8..8019481 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,5 @@ current_dir = File.dirname(__FILE__) -client_opts = "--force-formatter -z --config #{current_dir}/.chef/knife.rb" +client_opts = "--force-formatter --no-color -z --config #{current_dir}/.chef/knife.rb" task default: ["test"]