Perform configuration integrity test for AIDE

This commit is contained in:
mboelen 2014-10-27 00:28:28 +01:00
parent 5461efc678
commit 77e2705eb7
1 changed files with 8 additions and 1 deletions

View File

@ -72,7 +72,14 @@
if [ "${AIDECONFIG}" = "" ]; then
Display --indent 6 --text "- AIDE config file" --result "NOT FOUND" --color YELLOW
else
Display --indent 6 --text "- AIDE config file" --result FOUND --color GREEN
logtext "Checking configuration file ${AIDECONFIG} for errors"
FIND=`${AIDEBINARY} --config=${AIDECONFIG} -D; echo $?`
if [ "${FIND}" = "0" ]; then
Display --indent 6 --text "- AIDE config file" --result FOUND --color GREEN
else
Display --indent 6 --text "- AIDE config file" --result WARNING --color YELLOW
ReportSuggestion "${TEST_NO}" "Check the AIDE configuratio file as it may contain errors"
fi
fi
fi
#