From cfb3357a1214ad981460fbdbe404828647c85696 Mon Sep 17 00:00:00 2001 From: Joe Williams Date: Thu, 26 Jul 2018 15:02:12 -0400 Subject: [PATCH] fix docker user json output This prints out the docker users in a similar fashion to the other tests, including `INFO` rather than just the system command output. Signed-off-by: Joe Williams --- tests/1_host_configuration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/1_host_configuration.sh b/tests/1_host_configuration.sh index 31f3bf7..75d259f 100644 --- a/tests/1_host_configuration.sh +++ b/tests/1_host_configuration.sh @@ -65,7 +65,7 @@ check_1_4() { info "$check_1_4" for u in $docker_users; do info " * $u" - logjson "1.4" "$u" + logjson "1.4" "INFO: $u" done currentScore=$((currentScore + 0)) }