From 6a74a8727fcddd9cc6660d5486849454ad967664 Mon Sep 17 00:00:00 2001 From: vins1993 Date: Thu, 21 Sep 2017 15:09:57 +0200 Subject: [PATCH] Fix displayed result for signing keys check (#466) The result of the signing keys check is saved under KEYS_USED variable, but SSL_USED was used to present the result to the end user. --- include/helper_audit_dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/helper_audit_dockerfile b/include/helper_audit_dockerfile index a3f85bed..83199bbf 100644 --- a/include/helper_audit_dockerfile +++ b/include/helper_audit_dockerfile @@ -179,7 +179,7 @@ InsertSection "Basics" HASHING_USED=$(egrep "(sha1sum|sha256sum|sha512sum)" ${AUDIT_FILE}) Display --indent 2 --text "Hashing" --result "${HASHING_USED}" KEYS_USED=$(egrep "(apt-key adv)" ${AUDIT_FILE}) - Display --indent 2 --text "Signing keys used" --result ${SSL_USED} + Display --indent 2 --text "Signing keys used" --result ${KEYS_USED} Display --indent 2 --text "All downloads properly checked" --result "?" else Display --indent 2 --text "No files seems to be downloaded in this Dockerfile"