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>2016-05-03 15:57:53 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-05-03 15:57:53 +0300
commiteded02cfde6a48270b975d8390dac44b3ad22f35 (patch)
treef5aa20ddaade51615a4777a3642aadf2e4e546f7 /include/tests_banners
parenteda79af419d4d61ab6cc078d0c8f74bb8c031b98 (diff)
Rewritten counters and dealing with values
Diffstat (limited to 'include/tests_banners')
-rw-r--r--include/tests_banners6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tests_banners b/include/tests_banners
index 01e7e9c4..7537fa5e 100644
--- a/include/tests_banners
+++ b/include/tests_banners
@@ -103,7 +103,7 @@
# FIND=`grep -i "${I}" /etc/motd`
# if [ ! "${FIND}" = "" ]; then
# LogText "Result: found string '${I}'"
- # N=`expr ${N} + 1`
+ # N=$((N + 1))
# fi
# done
# # Check if we have 5 or more key words
@@ -154,7 +154,7 @@
FIND=`grep -i "${I}" /etc/issue`
if [ ! "${FIND}" = "" ]; then
LogText "Result: found string '${I}'"
- N=`expr ${N} + 1`
+ N=$((N + 1))
fi
done
# Check if we have 5 or more key words
@@ -206,7 +206,7 @@
FIND=`grep -i "${I}" /etc/issue.net`
if [ ! "${FIND}" = "" ]; then
LogText "Result: found string '${I}'"
- N=`expr ${N} + 1`
+ N=$((N + 1))
fi
done
# Check if we have 5 or more key words