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:
authormboelen <michael@cisofy.com>2016-05-02 14:26:27 +0300
committermboelen <michael@cisofy.com>2016-05-02 14:26:27 +0300
commita765163a256c55e84bcca6cc592650caf38aee40 (patch)
tree8707bbe40852cb9c3942cee7ad9c02ad0347dcb6 /include/tests_boot_services
parentbcaf7a55ef55fddf2d867fb03bbc10eb18993a7a (diff)
Minor changes to identation and variable names
Diffstat (limited to 'include/tests_boot_services')
-rw-r--r--include/tests_boot_services12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/tests_boot_services b/include/tests_boot_services
index b9c66f30..9ba00635 100644
--- a/include/tests_boot_services
+++ b/include/tests_boot_services
@@ -613,8 +613,8 @@
for J in ${FIND}; do
LogText "Test: checking permissions of file ${J}"
if IsWorldWritable ${J}; then
- LogText "Result: warning, file ${J} is world writable"
FOUND=1
+ LogText "Result: warning, file ${J} is world writable"
else
LogText "Result: good, file ${J} not world writable"
fi
@@ -634,8 +634,8 @@
FIND=`find /etc/rc${NO}.d -type f -print`
for I in ${FIND}; do
if IsWorldWritable ${I}; then
- LogText "Result: warning, file ${I} is world writable"
FOUND=1
+ LogText "Result: warning, file ${I} is world writable"
else
LogText "Result: good, file ${I} not world writable"
fi
@@ -649,15 +649,15 @@
if [ -f ${I} ]; then
ShowSymlinkPath "${I}"
if [ ${FOUNDPATH} -eq 1 ]; then
- CHECKFILE="$SYMLINK"
+ CHECKFILE="${SYMLINK}"
LogText "Result: found the path behind this symlink (${CHECKFILE} --> ${I})"
- else
- CHECKFILE="$I"
+ else
+ CHECKFILE="${I}"
fi
LogText "Test: Checking ${CHECKFILE} file for writable bit"
if IsWorldWritable ${CHECKFILE}; then
- ReportWarning ${TEST_NO} "H" "Found writable startup script ${CHECKFILE}"
FOUND=1
+ ReportWarning ${TEST_NO} "H" "Found writable startup script ${CHECKFILE}"
LogText "Result: warning, file ${CHECKFILE} is world writable"
else
LogText "Result: good, file ${CHECKFILE} not world writable"