From 1310b6b9ee13f1729e536726e9e4a826300fea97 Mon Sep 17 00:00:00 2001 From: Travis Hegner Date: Thu, 28 May 2015 15:34:42 -0400 Subject: [PATCH] adding hostname to summary of highstate output --- salt/output/highstate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/salt/output/highstate.py b/salt/output/highstate.py index 7adb67e449..47188af985 100644 --- a/salt/output/highstate.py +++ b/salt/output/highstate.py @@ -54,7 +54,7 @@ Example output: ret: True - Summary + Summary for myminion ------------ Succeeded: 1 Failed: 0 @@ -287,7 +287,7 @@ def _format_host(host, data): hstrs.append( colorfmt.format( colors['CYAN'], - u'\nSummary\n{0}'.format('-' * line_max_len), + u'\nSummary for '+host+u'\n{0}'.format('-' * line_max_len), colors ) )