Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvins1993 <enzobak1993@hotmail.it>2017-09-21 16:09:57 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2017-09-21 16:09:57 +0300
commit6a74a8727fcddd9cc6660d5486849454ad967664 (patch)
treef9e10f506d59da0fd7f815c4dd278f9511f715f9 /include/helper_audit_dockerfile
parentd2dfb6d43a0e4ef245d7b829b9dac92f02aafd92 (diff)
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.
Diffstat (limited to 'include/helper_audit_dockerfile')
-rw-r--r--include/helper_audit_dockerfile2
1 files changed, 1 insertions, 1 deletions
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"