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:
authorPrzemysław Dąbek <przemyslaw.dabek@gmail.com>2018-10-05 11:19:23 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2018-10-05 11:19:23 +0300
commitfd75c9fd0f08d2ae99d9d8368c426fb19d7057ab (patch)
tree0c28487b67d334f3aed23a5219c73f09c1d25074
parentc1f94177925996744fffa2fbd0cc03f56d7afb6f (diff)
typo fix in warning message (#585)
-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 1185fb2e..49b6a335 100644
--- a/include/helper_audit_dockerfile
+++ b/include/helper_audit_dockerfile
@@ -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}"