Missing quotes and better display (#570)

for KEY_USED
This commit is contained in:
superpoussin22 2018-08-15 13:56:56 +02:00 committed by Michael Boelen
parent 6ba7bad34e
commit 3b537fd8e8
1 changed files with 2 additions and 2 deletions

View File

@ -221,8 +221,8 @@ InsertSection "Basics"
Display --indent 2 --text "Integrity testing performed" --result "${SSL_USED}" --color ${COLOR}
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 ${KEYS_USED}
KEYS_USED=$(egrep "(apt-key adv)" ${AUDIT_FILE}| sed 's/RUN apt-key adv//g'| sed 's/--keyserver/Key Server:/g' | sed 's/--recv/Key Value:/g')
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"