From 533b1317ec4e2a6e11d084535c1e1475a5bf9d68 Mon Sep 17 00:00:00 2001 From: mboelen Date: Thu, 30 Oct 2014 13:05:39 +0100 Subject: [PATCH] Comment added --- lynis | 12 ++++++------ 1 file 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