mirror of https://github.com/CISOfy/lynis.git
[PRNT-2306] Check if files are readable before parsing them
This commit is contained in:
parent
fbd24b585a
commit
6c24c198ee
|
@ -91,9 +91,11 @@
|
|||
LogText "Test: Searching cupsd configuration file"
|
||||
for I in ${CUPSD_CONFIG_LOCS}; do
|
||||
if [ -f ${I}/cupsd.conf ]; then
|
||||
if FileIsReadable ${I}/cupsd.conf; then
|
||||
CUPSD_CONFIG_FILE="${I}/cupsd.conf"
|
||||
LogText "Result: found ${CUPSD_CONFIG_FILE}"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
if [ ! "${CUPSD_CONFIG_FILE}" = "" ]; then
|
||||
Display --indent 2 --text "- Checking CUPS configuration file" --result "${STATUS_OK}" --color GREEN
|
||||
|
|
Loading…
Reference in New Issue