mirror of https://github.com/CISOfy/lynis.git
Comment added
This commit is contained in:
parent
183be1a45a
commit
533b1317ec
12
lynis
12
lynis
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue