mirror of https://github.com/CISOfy/lynis.git
Update tests to reflect new style profile configuration
This commit is contained in:
parent
18bd61ebec
commit
6192cbd8fa
|
@ -92,11 +92,11 @@
|
|||
# Description : Scan home directories for specific files, used in different tests later
|
||||
# Notes : For performance reasons we combine the scanning of different files, so inode caching is used
|
||||
# as much as possible for every find command
|
||||
# Profile opt : ignore_home_dir (multiple lines allowed), ignores home directory
|
||||
# Profile opt : ignore-home-dir (multiple lines allowed), ignores home directory
|
||||
if [ ! -z "${REPORTFILE}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
|
||||
Register --test-no HOME-9350 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Collecting information from home directories"
|
||||
if [ ${SKIPTEST} -eq 0 ]; then
|
||||
IGNORE_HOME_DIRS=$(${GREPBINARY} "^config:ignore_home_dir:" ${PROFILE} | ${AWKBINARY} -F: '{ print $3 }')
|
||||
IGNORE_HOME_DIRS=$(${GREPBINARY} "^ignore-home-dir[]=" ${REPORTFILE} | ${AWKBINARY} -F= '{ print $2 }')
|
||||
if [ -z "${IGNORE_HOME_DIRS}" ]; then
|
||||
LogText "Result: IGNORE_HOME_DIRS empty, no paths excluded"
|
||||
else
|
||||
|
|
|
@ -259,7 +259,7 @@
|
|||
else
|
||||
for ITEM in ${FIND}; do
|
||||
LogText "Found stratum 16 peer: ${ITEM}"
|
||||
FIND2=$(${EGREPBINARY} "^ntp:ignore_stratum_16_peer:${ITEM}:" ${PROFILE})
|
||||
FIND2=$(${EGREPBINARY} "^ntp-ignore-stratum-16-peer=${ITEM}" ${PROFILE})
|
||||
if IsEmpty "${FIND2}"; then
|
||||
COUNT=$((COUNT + 1))
|
||||
Report "ntp_stratum_16_peer[]=${ITEM}"
|
||||
|
|
Loading…
Reference in New Issue