Nur für's Protokoll:
Dies betrifft rkhunter >= 1.3.0
(Debian: ab Lenny)
Auszug aus Changelog, 1.3.0, changes:
Quote: - The log file is now created by default, it can be disabled in the config
file or by using the --nolog command line option. The log file is created
with permissions 600.
im Code (v1.3.4) steht dann auch das drin:
Code:
if [ $NOLOG -eq 0 ]; then
if [ $APPEND_LOG -eq 0 ]; then
mv -f ${RKHLOGFILE} ${RKHLOGFILE}.old >/dev/null 2>&1
touch ${RKHLOGFILE} >/dev/null 2>&1
chmod 600 ${RKHLOGFILE} >/dev/null 2>&1
else
echo "" >>${RKHLOGFILE}
echo "" >>${RKHLOGFILE}
fi
fi
/J