summaryrefslogtreecommitdiff
path: root/lib/chef/formatters/minimal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/formatters/minimal.rb')
-rw-r--r--lib/chef/formatters/minimal.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/formatters/minimal.rb b/lib/chef/formatters/minimal.rb
index b2d0d7f264..c4f506531e 100644
--- a/lib/chef/formatters/minimal.rb
+++ b/lib/chef/formatters/minimal.rb
@@ -31,18 +31,18 @@ class Chef
puts_line "#{ChefUtils::Dist::Infra::PRODUCT}, version #{version}"
puts_line "Patents: #{ChefUtils::Dist::Org::PATENTS}"
puts_line "OpenSSL FIPS 140 mode enabled" if Chef::Config[:fips]
- puts_line "Starting Infra Phase"
+ puts_line "Infra Phase starting"
puts_line "Targeting node: #{Chef::Config.target_mode.host}" if Chef::Config.target_mode?
end
# Called at the end of the Chef run.
def run_completed(node)
- puts "#{ChefUtils::Dist::Infra::PRODUCT} finished, #{@updated_resources.size} resources updated"
+ puts "Infra phase complete, #{@updated_resources.size} resources updated"
end
# called at the end of a failed run
def run_failed(exception)
- puts "#{ChefUtils::Dist::Infra::PRODUCT} failed. #{@updated_resources.size} resources updated"
+ puts "Infra phase failed. #{@updated_resources.size} resources updated"
end
# Called right after ohai runs.