Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lynis
diff options
context:
space:
mode:
authormboelen <michael@cisofy.com>2014-10-30 15:05:39 +0300
committermboelen <michael@cisofy.com>2014-10-30 15:05:39 +0300
commit533b1317ec4e2a6e11d084535c1e1475a5bf9d68 (patch)
treef0988dcf8df3d0f498f11cbc003dc6925ae7bc31 /lynis
parent183be1a45a849131e551cd1dcb85a305f941d454 (diff)
Comment added
Diffstat (limited to 'lynis')
-rwxr-xr-xlynis12
1 files changed, 6 insertions, 6 deletions
diff --git a/lynis b/lynis
index e9f54c93..16fb09ba 100755
--- a/lynis
+++ b/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