Comment added

This commit is contained in:
mboelen 2014-10-30 13:05:39 +01:00
parent 183be1a45a
commit 533b1317ec
1 changed files with 6 additions and 6 deletions

12
lynis
View File

@ -5,8 +5,8 @@
# Lynis
# ------------------
#
# Copyright 2007-2014, Michael Boelen (michael.boelen@cisofy.com), The Netherlands
# Web site: http://www.cisofy.com
# Copyright 2007-2014 CISOfy, Michael Boelen, The Netherlands
# michael.boelen@cisofy.com - http://cisofy.com
#
# 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.
@ -21,8 +21,8 @@
# Program information
PROGRAM_name="Lynis"
PROGRAM_version="1.6.4"
PROGRAM_releasedate="14 October 2014"
PROGRAM_author="Michael Boelen"
PROGRAM_releasedate="27 October 2014"
PROGRAM_author="CISOfy/Michael Boelen"
PROGRAM_author_contact="michael.boelen@cisofy.com"
PROGRAM_website="http://cisofy.com"
PROGRAM_copyright="Copyright 2007-2014 - ${PROGRAM_author}, ${PROGRAM_website}"
@ -42,14 +42,14 @@
# Configure Include path and files
#
#################################################################################
# Test from which directories we can use all functions and tests
#################################################################################
#
# Set default to none for later testing
INCLUDEDIR=""
# Default paths to check (CWD as last option, in case we run from standalone)
tINCLUDE_TARGETS="/usr/local/include/lynis /usr/local/lynis/include /usr/share/lynis/include ./include"
# Test from which directories we can use all functions and tests
for I in ${tINCLUDE_TARGETS}; do if [ -d ${I} ]; then INCLUDEDIR=${I}; fi; done
# Drop out if our include directory can't be found
if [ "${INCLUDEDIR}" = "" ]; then