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:
authorMichael Boelen <michael.boelen@cisofy.com>2020-12-17 22:17:52 +0300
committerGitHub <noreply@github.com>2020-12-17 22:17:52 +0300
commita26ebd3004fc13cff5d15c5de86e09cb0baf2e13 (patch)
tree3dba812565127e7e6e3e7a0e108f18fcbad58a71 /include/tests_logging
parent8fb98cb25c80ad4655887af7aefc99db7c508f87 (diff)
Fix: missing curly bracket
Diffstat (limited to 'include/tests_logging')
-rw-r--r--include/tests_logging2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tests_logging b/include/tests_logging
index 4a15591d..acbbcf5b 100644
--- a/include/tests_logging
+++ b/include/tests_logging
@@ -317,7 +317,7 @@
LogText "Result: Checking for loghost via name resolving"
FIND=$(getent hosts loghost | ${GREPBINARY} loghost)
if [ -n "${FIND}" ]; then
- SOLARIS_LOGHOST="${FIND"
+ SOLARIS_LOGHOST="${FIND}"
SOLARIS_LOGHOST_FOUND=1
LogText "Result: name resolving was successful"
LogText "Output: ${FIND}"