#!/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.
#
#################################################################################
#
#    InsertSection "Auditing"

    # Test        : AUDT-6204
    # Description : Check AppArmor installed
    #Register --test-no AUDT-6204 --weight L --network NO --description "Check AppArmor"
    #if [ ${SKIPTEST} -eq 0 ]; then
    #fi

#
#################################################################################
#

    # Test        : AUDT-6204
    # Description : Check AppArmor active
    # Register --test-no AUDT-6204 --weight L --network NO --description "Check if AppArmor is enabled"
    # if [ ${SKIPTEST} -eq 0 ]; then
    # Checking AppArmor status
    # FIND=`aa-status > /dev/null; echo $?`
    #0 if apparmor is enabled and policy is loaded.
    #1 if apparmor is not enabled/loaded.
    #2 if apparmor is enabled but no policy is loaded.
    #    fi

    # Test        : AUDT-6234
    # Description : Check SELINUX for installation
    # Register --test-no AUDT-6234 --weight L --network NO --description "Check SELINUX"
    # if [ ${SKIPTEST} -eq 0 ]; then


#
#################################################################################
#

#wait_for_keypress

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