mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-13 08:54:30 +02:00
[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"
|
LogText "Test: Searching cupsd configuration file"
|
||||||
for I in ${CUPSD_CONFIG_LOCS}; do
|
for I in ${CUPSD_CONFIG_LOCS}; do
|
||||||
if [ -f ${I}/cupsd.conf ]; then
|
if [ -f ${I}/cupsd.conf ]; then
|
||||||
|
if FileIsReadable ${I}/cupsd.conf; then
|
||||||
CUPSD_CONFIG_FILE="${I}/cupsd.conf"
|
CUPSD_CONFIG_FILE="${I}/cupsd.conf"
|
||||||
LogText "Result: found ${CUPSD_CONFIG_FILE}"
|
LogText "Result: found ${CUPSD_CONFIG_FILE}"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
if [ ! "${CUPSD_CONFIG_FILE}" = "" ]; then
|
if [ ! "${CUPSD_CONFIG_FILE}" = "" ]; then
|
||||||
Display --indent 2 --text "- Checking CUPS configuration file" --result "${STATUS_OK}" --color GREEN
|
Display --indent 2 --text "- Checking CUPS configuration file" --result "${STATUS_OK}" --color GREEN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user