1
0
mirror of https://github.com/CISOfy/lynis.git synced 2025-04-08 17:15:25 +02:00

typo fix in warning message ()

This commit is contained in:
Przemysław Dąbek 2018-10-05 10:19:23 +02:00 committed by Michael Boelen
parent c1f9417792
commit fd75c9fd0f

@ -136,7 +136,7 @@ InsertSection "Basics"
FIND=$(grep "^USER" ${AUDIT_FILE} | cut -d' ' -f2 )
if [ "${FIND}" = "" ]; then
ReportWarning "dockerfile" "No user declared in Dockerlfile. Container will execute command as root"
ReportWarning "dockerfile" "No user declared in Dockerfile. Container will execute command as root"
else
USER=$(echo ${FIND})
Display --indent 2 --text "User" --result "${USER}"