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
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2017-10-29 18:55:55 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2017-10-29 18:55:55 +0300
commitbe82d80b02657190c90247570da9c95085d04c21 (patch)
treeffd13fdd65e88e0941776bff0a04e4e42a38a913
parente5c11991ef5e911ab8c015a73fa6cb8707c54eef (diff)
Release 2.5.72.5.7
-rw-r--r--CHANGELOG.md15
-rwxr-xr-xlynis10
2 files changed, 19 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 10a6941a..d5c1d311 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,21 @@
Lynis Changelog
===============
+Lynis 2.5.7 (2017-10-29)
+
+Changes:
+--------
+* Update of Portuguese translation
+* Added --silent as alias for --quiet
+* Reduced screen output when running non-privileged
+* IsRunning function now allows full name process match
+
+Tests:
+------
+* [TOOL-
+
+---------------------------------------------------------------------------------
+
Lynis 2.5.6 (2017-10-27)
Changes:
diff --git a/lynis b/lynis
index 9ef320cb..51ee8856 100755
--- a/lynis
+++ b/lynis
@@ -35,10 +35,10 @@
PROGRAM_AUTHOR_CONTACT="lynis-dev@cisofy.com"
# Version details
- PROGRAM_RELEASE_DATE="2017-10-27"
- PROGRAM_RELEASE_TIMESTAMP=1509101422
+ PROGRAM_RELEASE_DATE="2017-10-29"
+ PROGRAM_RELEASE_TIMESTAMP=1509268838
PROGRAM_RELEASE_TYPE="final" # dev or final
- PROGRAM_VERSION="2.5.6"
+ PROGRAM_VERSION="2.5.7"
# Source, documentation and license
PROGRAM_SOURCE="https://github.com/CISOfy/lynis"
@@ -434,7 +434,7 @@ ${YELLOW}Note: ${WHITE}Cancelling the program can leave temporary files behind${
#
#################################################################################
#
- if [ ${PRIVILEGED} -eq 0 -a ${CHECK} -eq 1 ]; then
+ if [ ${PRIVILEGED} -eq 0 -a ${CHECK} -eq 1 -a ${QUIET} -eq 0 ]; then
printf "%s" "${WHITE}
###################################################################
# #
@@ -454,8 +454,6 @@ ${NORMAL}
${RED}WARNING:${NORMAL}
${WHITE}*${NORMAL} No suggestions or warnings will be displayed in report (due to missing log file)"
fi
- #printf "\n\n%s" " ${WHITE}Press [ENTER] to continue or [CTRL] + C to break${NORMAL}"
- #if [ ${QUICKMODE} -eq 0 ]; then read void; fi
fi
#
#################################################################################