#!/bin/sh

#################################################################################
#
#   Lynis
# ------------------
#
# Copyright 2007-2008, Michael Boelen (michael@rootkit.nl), The Netherlands
# Web site: http://www.rootkit.nl
#
# Lynis comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
# welcome to redistribute it under the terms of the GNU General Public License.
# See LICENSE file for usage of this software.
#
#################################################################################
#
    FILE_INT_TOOL_FOUND=0
#
#################################################################################
#

    #InsertSection "Software: file integrity"

    # Test        : FINT-4314
    # Description : XXX
    #if [ -z "${OPENSSLBINARY}" ]; then PREQS_MET="YES" else PREQS_MET="NO"; fi
    #Register --test-no FINT-4314 --preqs-met ${PREQS_MET} --weight L --network NO --description "XXX"
    #if [ ${SKIPTEST} -eq 0 ]; then
    #fi

    #Display --indent 2 --text "- Checking AFICK..." --result FOUND --color GREEN
    #Display --indent 2 --text "- Checking AIDE..." --result FOUND --color GREEN
    #Display --indent 2 --text "- Checking Osiris..." --result FOUND --color GREEN
    #Display --indent 2 --text "- Checking Samhain..." --result FOUND --color GREEN
    #Display --indent 2 --text "- Checking Tripwire..." --result FOUND --color GREEN
#
#################################################################################
#
    # Test        : FINT-4350
    # Description : Check if at least one file integrity tool is installed
    # More info   : Security key points [25]
    #if [ ${FILE_INT_TOOL_FOUND} -eq 1 ]; then PREQS_MET="YES" else PREQS_MET="NO"; fi
    #Register --test-no FINT-4350 --preqs-met ${PREQS_MET} --weight L --network NO --description "File integrity software installed"
    #if [ ${SKIPTEST} -eq 0 ]; then
    #fi


#
#================================================================================
# Lynis - Copyright 2007-2008, Michael Boelen - www.rootkit.nl - The Netherlands
